1- <?xml version =" 1.0" ?>
1+ <?xml version =" 1.0" encoding = " UTF-8 " ?>
22<!--
33
44 The MIT License
2323 THE SOFTWARE.
2424
2525-->
26- <project
27- xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
28- xmlns =" http://maven.apache.org/POM/4.0.0"
29- xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" >
30- <modelVersion >4.0.0</modelVersion >
31- <parent >
32- <groupId >com.iluwatar</groupId >
33- <artifactId >java-design-patterns</artifactId >
34- <version >1.25.0-SNAPSHOT</version >
35- </parent >
36- <artifactId >lockable-object</artifactId >
37- <dependencies >
38- <dependency >
39- <groupId >org.junit.jupiter</groupId >
40- <artifactId >junit-jupiter-engine</artifactId >
41- <scope >test</scope >
42- </dependency >
43- </dependencies >
44- <build >
45- <plugins >
46- <!-- Maven assembly plugin is invoked with default setting which we have
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+ <modelVersion >4.0.0</modelVersion >
28+ <parent >
29+ <groupId >com.iluwatar</groupId >
30+ <artifactId >java-design-patterns</artifactId >
31+ <version >1.25.0-SNAPSHOT</version >
32+ </parent >
33+ <artifactId >lockable-object</artifactId >
34+ <dependencies >
35+ <dependency >
36+ <groupId >org.junit.jupiter</groupId >
37+ <artifactId >junit-jupiter-engine</artifactId >
38+ <scope >test</scope >
39+ </dependency >
40+ </dependencies >
41+ <build >
42+ <plugins >
43+ <!-- Maven assembly plugin is invoked with default setting which we have
4744 in parent pom and specifying the class having main method -->
48- <plugin >
49- <groupId >org.apache.maven.plugins</groupId >
50- <artifactId >maven-assembly-plugin</artifactId >
51- <executions >
52- <execution >
53- <configuration >
54- <archive >
55- <manifest >
56- <mainClass >com.iluwatar.lockableobject.App</mainClass >
57- </manifest >
58- </archive >
59- </configuration >
60- </execution >
61- </executions >
62- </plugin >
63- </plugins >
64- </build >
65- </project >
45+ <plugin >
46+ <groupId >org.apache.maven.plugins</groupId >
47+ <artifactId >maven-assembly-plugin</artifactId >
48+ <executions >
49+ <execution >
50+ <configuration >
51+ <archive >
52+ <manifest >
53+ <mainClass >com.iluwatar.lockableobject.App</mainClass >
54+ </manifest >
55+ </archive >
56+ </configuration >
57+ </execution >
58+ </executions >
59+ </plugin >
60+ </plugins >
61+ </build >
62+ </project >
0 commit comments