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

Commit

Permalink
Fix version 1.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
JBYoshi committed Aug 6, 2015
1 parent a72e8a3 commit 16e0aad
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,33 @@
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<version>2.4.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
</execution>
</executions>
<configuration>
<transformers>
<transformer
implementation="org.apache.maven.plugins.shade.resource.ManifestResourceTransformer">
<mainClass>jbyoshi.gitupdate.GitUpdate</mainClass>
</transformer>
<transformer
implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
<resources>
<resource>.SF</resource>
<resource>.RSA</resource>
</resources>
</transformer>
</transformers>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down
File renamed without changes.

0 comments on commit 16e0aad

Please sign in to comment.