File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 99 <version >1.0-SNAPSHOT</version >
1010
1111 <properties >
12- <maven .compiler.source>17 </maven .compiler.source>
13- <maven .compiler.target>17 </maven .compiler.target>
12+ <maven .compiler.source>1.8 </maven .compiler.source>
13+ <maven .compiler.target>1.8 </maven .compiler.target>
1414 <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
1515 </properties >
1616
17+
18+
19+ <build >
20+ <plugins >
21+ <plugin >
22+ <groupId >org.apache.maven.plugins</groupId >
23+ <artifactId >maven-assembly-plugin</artifactId >
24+ <version >3.3.0</version >
25+ <configuration >
26+ <archive >
27+ <manifest >
28+ <mainClass >com.napier.devops.App</mainClass >
29+ </manifest >
30+ </archive >
31+ <descriptorRefs >
32+ <descriptorRef >jar-with-dependencies</descriptorRef >
33+ </descriptorRefs >
34+ </configuration >
35+ <executions >
36+ <execution >
37+ <id >make-assembly</id >
38+ <phase >package</phase >
39+ <goals >
40+ <goal >single</goal >
41+ </goals >
42+ </execution >
43+ </executions >
44+ </plugin >
45+ </plugins >
46+ </build >
47+
1748 <dependencies >
1849 <dependency >
1950 <groupId >org.mongodb</groupId >
2253 </dependency >
2354 </dependencies >
2455
56+
2557</project >
You can’t perform that action at this time.
0 commit comments