TF-EssentialsX/nbactions.xml
DoNotSpamPls 03b25a0f06 Set target to Java 8 (for 1.13) & update Maven plugins (#1922) @DoNotSpamPls
This is the same PR as the last one (PR #1823), but I messed that one up accidently, sorry for that!
2018-07-17 09:38:01 +01:00

27 lines
667 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>build-with-dependencies</actionName>
<reactor>also-make</reactor>
<goals>
<goal>package</goal>
<goal>dependency:copy</goal>
</goals>
</action>
<action>
<actionName>rebuild</actionName>
<goals>
<goal>clean</goal>
<goal>package</goal>
<goal>dependency:copy</goal>
</goals>
</action>
<action>
<actionName>build</actionName>
<goals>
<goal>package</goal>
<goal>dependency:copy</goal>
</goals>
</action>
</actions>