Skip to content
This repository was archived by the owner on Dec 31, 2018. It is now read-only.

Commit a72a2b8

Browse files
committed
Make jar executable
1 parent 9d6bc3b commit a72a2b8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

pom.xml

+25
Original file line numberDiff line numberDiff line change
@@ -79,4 +79,29 @@
7979
<scope>test</scope>
8080
</dependency>
8181
</dependencies>
82+
83+
<build>
84+
<plugins>
85+
<plugin>
86+
<groupId>org.apache.maven.plugins</groupId>
87+
<artifactId>maven-jar-plugin</artifactId>
88+
<version>2.3.2</version>
89+
<configuration>
90+
<archive>
91+
<manifest>
92+
<mainClass>com.ckkloverdos.jbootstrap.Main</mainClass>
93+
</manifest>
94+
</archive>
95+
</configuration>
96+
<executions>
97+
<execution>
98+
<id>jar</id>
99+
<goals>
100+
<goal>jar</goal>
101+
</goals>
102+
</execution>
103+
</executions>
104+
</plugin>
105+
</plugins>
106+
</build>
82107
</project>

0 commit comments

Comments
 (0)