forked from essentials/Essentials
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
29 lines (26 loc) · 814 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
29
<?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>