-
Notifications
You must be signed in to change notification settings - Fork 15
/
nbactions.xml
84 lines (84 loc) · 2.44 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>package</goal>
</goals>
<properties>
<netbeans.deploy>true</netbeans.deploy>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>package</goal>
</goals>
<properties>
<netbeans.deploy.debugmode>true</netbeans.deploy.debugmode>
<netbeans.deploy>true</netbeans.deploy>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-Build -skip-test</actionName>
<displayName>Build -skip-test</displayName>
<goals>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-Clean build -skip-test</actionName>
<displayName>Clean build -skip-test</displayName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-Run -skip-test</actionName>
<displayName>Run -skip-test</displayName>
<goals>
<goal>package</goal>
</goals>
<properties>
<skipTests>true</skipTests>
<netbeans.deploy>true</netbeans.deploy>
</properties>
</action>
<action>
<actionName>CUSTOM-Debug -skip-test</actionName>
<displayName>Debug -skip-test</displayName>
<goals>
<goal>package</goal>
</goals>
<properties>
<netbeans.deploy.debugmode>true</netbeans.deploy.debugmode>
<netbeans.deploy>true</netbeans.deploy>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>CUSTOM-Build site</actionName>
<displayName>Build site</displayName>
<goals>
<goal>site</goal>
<goal>site:stage</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Install Site</actionName>
<displayName>Install Site</displayName>
<recursive>false</recursive>
<goals>
<goal>scm-publish:publish-scm</goal>
</goals>
</action>
</actions>