-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
executable file
·93 lines (90 loc) · 2.7 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-install and test</actionName>
<displayName>install and test</displayName>
<goals>
<goal>install</goal>
</goals>
<properties>
<Env.MAVEN_OPTS>-Xmx4G -Xms256M</Env.MAVEN_OPTS>
<skipITs>false</skipITs>
</properties>
</action>
<action>
<actionName>CUSTOM-deploy</actionName>
<displayName>deploy</displayName>
<goals>
<goal>deploy</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Integration Test</actionName>
<displayName>Integration Test</displayName>
<goals>
<goal>verify</goal>
</goals>
<properties>
<skipITs>false</skipITs>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Site Preview</actionName>
<displayName>Site Preview</displayName>
<goals>
<goal>site:site</goal>
<goal>site:stage</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Clean Install Offline</actionName>
<displayName>Clean Install Offline</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Compile</actionName>
<displayName>Compile</displayName>
<goals>
<goal>compile</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Fix Javadoc</actionName>
<displayName>Fix Javadoc</displayName>
<goals>
<goal>javadoc:fix</goal>
</goals>
<properties>
<comparisonVersion>1.3.0</comparisonVersion>
</properties>
</action>
<action>
<actionName>CUSTOM-Site Stage Debug</actionName>
<displayName>Site Stage Debug</displayName>
<goals>
<goal>site:site</goal>
<goal>site:stage</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Clean Install Skip Tests</actionName>
<displayName>Clean Install Skip Tests</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
</actions>