Skip to content

Commit

Permalink
Add maven configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
scandinave committed Nov 8, 2018
1 parent 9b30342 commit 3409873
Showing 1 changed file with 23 additions and 1 deletion.
24 changes: 23 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>EclipsePluginDownload</groupId>
<artifactId>EclipsePluginDownload</artifactId>
<version>0.0.1-SNAPSHOT</version>
<version>2.0</version>
<build>
<sourceDirectory>src</sourceDirectory>
<resources>
Expand All @@ -22,6 +22,28 @@
<target>10</target>
</configuration>
</plugin>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
<archive>
<manifest>
<mainClass>info.scandi.epd.Main</mainClass>
</manifest>
</archive>
</configuration>
<executions>
<execution>
<id>make-assembly</id> <!-- this is used for inheritance merges -->
<phase>package</phase> <!-- bind to the packaging phase -->
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
Expand Down

0 comments on commit 3409873

Please sign in to comment.