Skip to content

Commit f904500

Browse files
committed
Added the maven-jar-plugin.
1 parent 7a10755 commit f904500

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

pom.xml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
<artifactId>cremer-pople-method</artifactId>
99
<version>2.0</version>
1010
<packaging>jar</packaging>
11-
1211
<name>Cremer-Pople Method</name>
1312

1413
<properties>
@@ -26,6 +25,18 @@
2625
<target>1.8</target>
2726
</configuration>
2827
</plugin>
28+
<plugin>
29+
<groupId>org.apache.maven.plugins</groupId>
30+
<artifactId>maven-jar-plugin</artifactId>
31+
<version>3.0.2</version>
32+
<configuration>
33+
<archive>
34+
<manifest>
35+
<mainClass>com.cpm.Main</mainClass>
36+
</manifest>
37+
</archive>
38+
</configuration>
39+
</plugin>
2940
</plugins>
3041
</build>
3142
</project>

0 commit comments

Comments
 (0)