File tree Expand file tree Collapse file tree 3 files changed +45
-0
lines changed
src/main/resources/META-INF Expand file tree Collapse file tree 3 files changed +45
-0
lines changed Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" ?>
2+ <project
3+ xsi:schemaLocation=" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4+ xmlns=" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
5+ <modelVersion >4.0.0</modelVersion >
6+ <parent >
7+ <groupId >com.iluwatar</groupId >
8+ <artifactId >java-design-patterns</artifactId >
9+ <version >1.5.0</version >
10+ </parent >
11+ <groupId >com.iluwatar.layers</groupId >
12+ <artifactId >layers</artifactId >
13+ <dependencies >
14+ <dependency >
15+ <groupId >org.springframework.data</groupId >
16+ <artifactId >spring-data-jpa</artifactId >
17+ </dependency >
18+ <dependency >
19+ <groupId >org.hibernate</groupId >
20+ <artifactId >hibernate-entitymanager</artifactId >
21+ </dependency >
22+ <dependency >
23+ <groupId >commons-dbcp</groupId >
24+ <artifactId >commons-dbcp</artifactId >
25+ </dependency >
26+ <dependency >
27+ <groupId >com.h2database</groupId >
28+ <artifactId >h2</artifactId >
29+ </dependency >
30+ <dependency >
31+ <groupId >junit</groupId >
32+ <artifactId >junit</artifactId >
33+ <scope >test</scope >
34+ </dependency >
35+ </dependencies >
36+ </project >
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <persistence version =" 1.0"
3+ xmlns=" http://java.sun.com/xml/ns/persistence" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi:schemaLocation=" http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd" >
5+
6+ <persistence-unit name =" jpaData" />
7+
8+ </persistence >
Original file line number Diff line number Diff line change 7474 <module >business-delegate</module >
7575 <module >half-sync-half-async</module >
7676 <module >step-builder</module >
77+ <module >layers</module >
7778 </modules >
7879
7980 <dependencyManagement >
You can’t perform that action at this time.
0 commit comments