forked from primesign/mocca
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbactions.xml
More file actions
37 lines (37 loc) · 1.19 KB
/
nbactions.xml
File metadata and controls
37 lines (37 loc) · 1.19 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Install_SkipTest</actionName>
<displayName>Install_SkipTest</displayName>
<goals>
<goal>install</goal>
</goals>
<properties>
<maven.test.skip>true</maven.test.skip>
</properties>
</action>
<action>
<actionName>CUSTOM-release:prepare</actionName>
<displayName>release:prepare</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 (clemenso)</actionName>
<displayName>release (clemenso)</displayName>
<goals>
<goal>release:prepare</goal>
</goals>
<properties>
<username>clemenso</username>
</properties>
</action>
</actions>