Updated pom.xml to build jar-with-dependencies (#15)

runelite-client: Updated pom.xml to build jar-with-dependencies
This commit is contained in:
Kronos
2017-04-12 22:14:41 +10:00
committed by Adam
parent cd7a5253e1
commit f324a8357d

View File

@@ -91,4 +91,31 @@
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<artifactId>maven-assembly-plugin</artifactId>
<configuration>
<archive>
<manifest>
<mainClass>net.runelite.client.RuneLite</mainClass>
</manifest>
</archive>
<descriptorRefs>
<descriptorRef>jar-with-dependencies</descriptorRef>
</descriptorRefs>
</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>
</project>