Skip to content

Commit

Permalink
Changed compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
Rigner committed Aug 31, 2016
1 parent 33e52a9 commit da5190b
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,32 @@
<groupId>net.rigner</groupId>
<artifactId>Limbo</artifactId>
<version>1.0.0</version>

<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
</execution>
</executions>
<configuration>
<source>1.8</source>
<target>1.8</target>

<archive>
<manifest>
<addClasspath>true</addClasspath>
<mainClass>net.rigner.limbo.Limbo</mainClass>
</manifest>
</archive>

<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>

</configuration>
</plugin>
</plugins>
Expand Down

0 comments on commit da5190b

Please sign in to comment.