Skip to content
This repository was archived by the owner on Apr 5, 2019. It is now read-only.

Commit 16e0aad

Browse files
committed
Fix version 1.0.
1 parent a72e8a3 commit 16e0aad

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed

pom.xml

+27
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,33 @@
1616
<target>1.8</target>
1717
</configuration>
1818
</plugin>
19+
<plugin>
20+
<artifactId>maven-shade-plugin</artifactId>
21+
<version>2.4.1</version>
22+
<executions>
23+
<execution>
24+
<phase>package</phase>
25+
<goals>
26+
<goal>shade</goal>
27+
</goals>
28+
</execution>
29+
</executions>
30+
<configuration>
31+
<transformers>
32+
<transformer
33+
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
34+
<mainClass>jbyoshi.gitupdate.GitUpdate</mainClass>
35+
</transformer>
36+
<transformer
37+
implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
38+
<resources>
39+
<resource>.SF</resource>
40+
<resource>.RSA</resource>
41+
</resources>
42+
</transformer>
43+
</transformers>
44+
</configuration>
45+
</plugin>
1946
</plugins>
2047
</build>
2148
<dependencies>
File renamed without changes.

0 commit comments

Comments
 (0)