-
Notifications
You must be signed in to change notification settings - Fork 53
/
nbactions.xml
51 lines (51 loc) · 1.72 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
46
47
48
49
50
51
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-check_for_new_dependencies</actionName>
<displayName>check_for_new_dependencies</displayName>
<recursive>false</recursive>
<goals>
<goal>versions:display-dependency-updates</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-check_for_new_plugins</actionName>
<displayName>check_for_new_plugins</displayName>
<recursive>false</recursive>
<goals>
<goal>versions:display-plugin-updates</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-ready-for-release-test</actionName>
<displayName>ready-for-release-test</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>source:jar</goal>
<goal>javadoc:jar</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-clean install -DskipTest=True</actionName>
<displayName>clean install -DskipTest=True</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>clean</goal>
<goal>install</goal>
<goal>javadoc:javadoc</goal>
</goals>
</action>
</actions>