Create PurpleIRC.jar

This commit is contained in:
cnaude 2016-11-20 09:18:18 -07:00
parent 40f98e031e
commit 701b71b017

18
pom.xml
View File

@ -507,6 +507,24 @@
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<configuration>
<tasks>
<copy file="../${project.name}/target/${project.name}-${project.version}.jar" tofile="../${project.name}/target/PurpleIRC.jar"/>
</tasks>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>