forked from diirt/pvmanager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnbactions.xml
37 lines (36 loc) · 1.24 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Site</actionName>
<displayName>Site</displayName>
<goals>
<goal>site:site</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Release</actionName>
<displayName>ReleasePrepare</displayName>
<goals>
<goal>release:prepare</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-ReleasePerform</actionName>
<displayName>ReleasePerform</displayName>
<goals>
<goal>release:perform</goal>
</goals>
<properties>
<maven.wagon.http.ssl.insecure>true</maven.wagon.http.ssl.insecure>
<maven.wagon.http.ssl.allowall>true</maven.wagon.http.ssl.allowall>
<skipTests>arguments="-DskipTests"</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-ChangeVersion</actionName>
<displayName>ChangeVersion</displayName>
<goals>
<goal>release:update-versions</goal>
</goals>
</action>
</actions>