-
Notifications
You must be signed in to change notification settings - Fork 3
/
nbactions.xml
45 lines (45 loc) · 1.43 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
42
43
44
45
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Prepare Release</actionName>
<displayName>Prepare Release</displayName>
<goals>
<goal>release:prepare</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Release Rollback</actionName>
<displayName>Release Rollback</displayName>
<goals>
<goal>release:rollback</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Release Clean</actionName>
<displayName>Release Clean</displayName>
<goals>
<goal>release:clean</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Release Perform</actionName>
<displayName>Perform Release</displayName>
<goals>
<goal>release:perform</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Display Available Plugin Updates</actionName>
<displayName>Display Available Plugin Updates</displayName>
<goals>
<goal>versions:display-plugin-updates</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Create Embedded Tomcat Distro</actionName>
<displayName>Create Embedded Tomcat Distro</displayName>
<goals>
<goal>package</goal>
</goals>
</action>
</actions>