Skip to content

Commit 61b1c42

Browse files
committed
iluwatar#84 Fix merge errors
1 parent 072a885 commit 61b1c42

File tree

3 files changed

+45
-0
lines changed

3 files changed

+45
-0
lines changed

layers/pom.xml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
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>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@
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>

0 commit comments

Comments
 (0)