Skip to content

Commit 1496a46

Browse files
committed
Add urm plugin to the rest of the projects.
1 parent af77911 commit 1496a46

File tree

31 files changed

+909
-470
lines changed

31 files changed

+909
-470
lines changed

layers/pom.xml

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@
1414
<dependency>
1515
<groupId>org.springframework.data</groupId>
1616
<artifactId>spring-data-jpa</artifactId>
17-
</dependency>
17+
</dependency>
1818
<dependency>
1919
<groupId>org.hibernate</groupId>
2020
<artifactId>hibernate-entitymanager</artifactId>
2121
</dependency>
2222
<dependency>
23-
<groupId>commons-dbcp</groupId>
24-
<artifactId>commons-dbcp</artifactId>
25-
</dependency>
23+
<groupId>commons-dbcp</groupId>
24+
<artifactId>commons-dbcp</artifactId>
25+
</dependency>
2626
<dependency>
2727
<groupId>com.h2database</groupId>
2828
<artifactId>h2</artifactId>
@@ -33,4 +33,17 @@
3333
<scope>test</scope>
3434
</dependency>
3535
</dependencies>
36+
<build>
37+
<plugins>
38+
<plugin>
39+
<groupId>com.iluwatar</groupId>
40+
<artifactId>urm-maven-plugin</artifactId>
41+
<configuration>
42+
<packages>
43+
<param>com.iluwatar.layers</param>
44+
</packages>
45+
</configuration>
46+
</plugin>
47+
</plugins>
48+
</build>
3649
</project>

lazy-loading/pom.xml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>lazy-loading</artifactId>
11-
<dependencies>
12-
<dependency>
13-
<groupId>junit</groupId>
14-
<artifactId>junit</artifactId>
15-
<scope>test</scope>
16-
</dependency>
17-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>lazy-loading</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
<scope>test</scope>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>com.iluwatar</groupId>
23+
<artifactId>urm-maven-plugin</artifactId>
24+
<configuration>
25+
<packages>
26+
<param>com.iluwatar.lazy.loading</param>
27+
</packages>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1832
</project>

mediator/pom.xml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>mediator</artifactId>
11-
<dependencies>
12-
<dependency>
13-
<groupId>junit</groupId>
14-
<artifactId>junit</artifactId>
15-
<scope>test</scope>
16-
</dependency>
17-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>mediator</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
<scope>test</scope>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>com.iluwatar</groupId>
23+
<artifactId>urm-maven-plugin</artifactId>
24+
<configuration>
25+
<packages>
26+
<param>com.iluwatar.mediator</param>
27+
</packages>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1832
</project>

memento/pom.xml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>memento</artifactId>
11-
<dependencies>
12-
<dependency>
13-
<groupId>junit</groupId>
14-
<artifactId>junit</artifactId>
15-
<scope>test</scope>
16-
</dependency>
17-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>memento</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
<scope>test</scope>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>com.iluwatar</groupId>
23+
<artifactId>urm-maven-plugin</artifactId>
24+
<configuration>
25+
<packages>
26+
<param>com.iluwatar.memento</param>
27+
</packages>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1832
</project>

message-channel/pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,17 @@
2424
<scope>test</scope>
2525
</dependency>
2626
</dependencies>
27+
<build>
28+
<plugins>
29+
<plugin>
30+
<groupId>com.iluwatar</groupId>
31+
<artifactId>urm-maven-plugin</artifactId>
32+
<configuration>
33+
<packages>
34+
<param>com.iluwatar.message.channel</param>
35+
</packages>
36+
</configuration>
37+
</plugin>
38+
</plugins>
39+
</build>
2740
</project>

model-view-controller/pom.xml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>model-view-controller</artifactId>
11-
<dependencies>
12-
<dependency>
13-
<groupId>junit</groupId>
14-
<artifactId>junit</artifactId>
15-
<scope>test</scope>
16-
</dependency>
17-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>model-view-controller</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
<scope>test</scope>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>com.iluwatar</groupId>
23+
<artifactId>urm-maven-plugin</artifactId>
24+
<configuration>
25+
<packages>
26+
<param>com.iluwatar.model.view.controller</param>
27+
</packages>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1832
</project>

model-view-presenter/pom.xml

Lines changed: 37 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,39 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>model-view-presenter</artifactId>
11-
<name>model-view-presenter</name>
12-
<url>http://maven.apache.org</url>
13-
<dependencies>
14-
<dependency>
15-
<groupId>junit</groupId>
16-
<artifactId>junit</artifactId>
17-
<scope>test</scope>
18-
</dependency>
19-
<dependency>
20-
<groupId>net.java.dev.swing-layout</groupId>
21-
<artifactId>swing-layout</artifactId>
22-
<version>1.0.2</version>
23-
</dependency>
24-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>model-view-presenter</artifactId>
12+
<name>model-view-presenter</name>
13+
<url>http://maven.apache.org</url>
14+
<dependencies>
15+
<dependency>
16+
<groupId>junit</groupId>
17+
<artifactId>junit</artifactId>
18+
<scope>test</scope>
19+
</dependency>
20+
<dependency>
21+
<groupId>net.java.dev.swing-layout</groupId>
22+
<artifactId>swing-layout</artifactId>
23+
<version>1.0.2</version>
24+
</dependency>
25+
</dependencies>
26+
<build>
27+
<plugins>
28+
<plugin>
29+
<groupId>com.iluwatar</groupId>
30+
<artifactId>urm-maven-plugin</artifactId>
31+
<configuration>
32+
<packages>
33+
<param>com.iluwatar.model.view.presenter</param>
34+
</packages>
35+
</configuration>
36+
</plugin>
37+
</plugins>
38+
</build>
2539
</project>

multiton/pom.xml

Lines changed: 30 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,32 @@
11
<?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.6.0</version>
9-
</parent>
10-
<artifactId>multiton</artifactId>
11-
<dependencies>
12-
<dependency>
13-
<groupId>junit</groupId>
14-
<artifactId>junit</artifactId>
15-
<scope>test</scope>
16-
</dependency>
17-
</dependencies>
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.6.0</version>
10+
</parent>
11+
<artifactId>multiton</artifactId>
12+
<dependencies>
13+
<dependency>
14+
<groupId>junit</groupId>
15+
<artifactId>junit</artifactId>
16+
<scope>test</scope>
17+
</dependency>
18+
</dependencies>
19+
<build>
20+
<plugins>
21+
<plugin>
22+
<groupId>com.iluwatar</groupId>
23+
<artifactId>urm-maven-plugin</artifactId>
24+
<configuration>
25+
<packages>
26+
<param>com.iluwatar.multiton</param>
27+
</packages>
28+
</configuration>
29+
</plugin>
30+
</plugins>
31+
</build>
1832
</project>

0 commit comments

Comments
 (0)