forked from Dragoboss/PlayerHeads
-
Notifications
You must be signed in to change notification settings - Fork 1
/
nbactions.xml
28 lines (28 loc) · 904 Bytes
/
nbactions.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-clean-compile-notests</actionName>
<displayName>clean-compile-notests</displayName>
<goals>
<goal>clean</goal>
<goal>compile</goal>
<goal>package</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-comile-notests</actionName>
<displayName>compile-notests</displayName>
<goals>
<goal>compile</goal>
<goal>package</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
</actions>