23
23
THE SOFTWARE.
24
24
25
25
-->
26
- <project xmlns =" http://maven.apache.org/POM/4.0.0"
27
- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
28
- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
29
- <parent >
30
- <artifactId >java-design-patterns</artifactId >
31
- <groupId >com.iluwatar</groupId >
32
- <version >1.25.0-SNAPSHOT</version >
33
- </parent >
34
- <modelVersion >4.0.0</modelVersion >
35
-
36
- <artifactId >domain-model</artifactId >
37
-
38
- <dependencies >
39
- <dependency >
40
- <groupId >com.h2database</groupId >
41
- <artifactId >h2</artifactId >
42
- </dependency >
43
- <dependency >
44
- <groupId >org.junit.jupiter</groupId >
45
- <artifactId >junit-jupiter-engine</artifactId >
46
- <scope >test</scope >
47
- </dependency >
48
- <dependency >
49
- <groupId >org.mockito</groupId >
50
- <artifactId >mockito-core</artifactId >
51
- </dependency >
52
- <dependency >
53
- <groupId >org.joda</groupId >
54
- <artifactId >joda-money</artifactId >
55
- <version >1.0.1</version >
56
- </dependency >
57
- </dependencies >
58
- <build >
59
- <plugins >
60
- <plugin >
61
- <groupId >org.apache.maven.plugins</groupId >
62
- <artifactId >maven-assembly-plugin</artifactId >
63
- <executions >
64
- <execution >
65
- <configuration >
66
- <archive >
67
- <manifest >
68
- <mainClass >com.iluwatar.domainmodel.App</mainClass >
69
- </manifest >
70
- </archive >
71
- </configuration >
72
- </execution >
73
- </executions >
74
- </plugin >
75
- </plugins >
76
- </build >
77
-
78
- </project >
26
+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
27
+ <parent >
28
+ <artifactId >java-design-patterns</artifactId >
29
+ <groupId >com.iluwatar</groupId >
30
+ <version >1.25.0-SNAPSHOT</version >
31
+ </parent >
32
+ <modelVersion >4.0.0</modelVersion >
33
+ <artifactId >domain-model</artifactId >
34
+ <dependencies >
35
+ <dependency >
36
+ <groupId >com.h2database</groupId >
37
+ <artifactId >h2</artifactId >
38
+ </dependency >
39
+ <dependency >
40
+ <groupId >org.junit.jupiter</groupId >
41
+ <artifactId >junit-jupiter-engine</artifactId >
42
+ <scope >test</scope >
43
+ </dependency >
44
+ <dependency >
45
+ <groupId >org.mockito</groupId >
46
+ <artifactId >mockito-core</artifactId >
47
+ </dependency >
48
+ <dependency >
49
+ <groupId >org.joda</groupId >
50
+ <artifactId >joda-money</artifactId >
51
+ <version >1.0.1</version >
52
+ </dependency >
53
+ </dependencies >
54
+ <build >
55
+ <plugins >
56
+ <plugin >
57
+ <groupId >org.apache.maven.plugins</groupId >
58
+ <artifactId >maven-assembly-plugin</artifactId >
59
+ <executions >
60
+ <execution >
61
+ <configuration >
62
+ <archive >
63
+ <manifest >
64
+ <mainClass >com.iluwatar.domainmodel.App</mainClass >
65
+ </manifest >
66
+ </archive >
67
+ </configuration >
68
+ </execution >
69
+ </executions >
70
+ </plugin >
71
+ </plugins >
72
+ </build >
73
+ </project >
0 commit comments