X Tutup
Skip to content

Commit 1988ab4

Browse files
committed
Rename artifact and folder.
1 parent 63b22c1 commit 1988ab4

20 files changed

+27
-1
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
<module>intercepting-filter</module>
5050
<module>poison-pill</module>
5151
<module>lazy-loading</module>
52-
<module>dao</module>
52+
<module>service-layer</module>
5353
</modules>
5454

5555
<dependencyManagement>
File renamed without changes.

service-layer/pom.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<?xml version="1.0"?>
2+
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
4+
<modelVersion>4.0.0</modelVersion>
5+
<parent>
6+
<groupId>com.iluwatar</groupId>
7+
<artifactId>java-design-patterns</artifactId>
8+
<version>1.0-SNAPSHOT</version>
9+
</parent>
10+
<artifactId>service-layer</artifactId>
11+
<dependencies>
12+
<dependency>
13+
<groupId>org.hibernate</groupId>
14+
<artifactId>hibernate-core</artifactId>
15+
</dependency>
16+
<dependency>
17+
<groupId>com.h2database</groupId>
18+
<artifactId>h2</artifactId>
19+
</dependency>
20+
<dependency>
21+
<groupId>junit</groupId>
22+
<artifactId>junit</artifactId>
23+
<scope>test</scope>
24+
</dependency>
25+
</dependencies>
26+
</project>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

dao/src/main/java/com/iluwatar/HibernateUtil.java renamed to service-layer/src/main/java/com/iluwatar/HibernateUtil.java

File renamed without changes.
File renamed without changes.

dao/src/main/java/com/iluwatar/MagicServiceImpl.java renamed to service-layer/src/main/java/com/iluwatar/MagicServiceImpl.java

File renamed without changes.

0 commit comments

Comments
 (0)
X Tutup