-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
41 lines (36 loc) · 1.1 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-clean build skip tests</actionName>
<displayName>clean build no tests</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-clean deploy</actionName>
<displayName>clean deploy</displayName>
<goals>
<goal>clean</goal>
<goal>deploy</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-display-dependency-updates</actionName>
<displayName>display-dependency-updates</displayName>
<goals>
<goal>versions:display-dependency-updates</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-display-plugin-updates</actionName>
<displayName>display-plugin-updates</displayName>
<goals>
<goal>versions:display-plugin-updates</goal>
</goals>
</action>
</actions>