-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
58 lines (58 loc) · 1.69 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-run-war</actionName>
<displayName>run-war</displayName>
<goals>
<goal>tomcat6:run-war</goal>
</goals>
</action>
<action>
<actionName>run</actionName>
<goals>
<goal>jetty:run</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-tomcat6:start</actionName>
<displayName>tomcat6:start</displayName>
<goals>
<goal>tomcat6:start</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-inplace</actionName>
<displayName>inplace</displayName>
<goals>
<goal>war:inplace</goal>
<goal>tomcat6:redeploy</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-jetty</actionName>
<displayName>jetty</displayName>
<goals>
<goal>jetty:run</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-compile</actionName>
<displayName>compile</displayName>
<goals>
<goal>compile</goal>
</goals>
</action>
<action>
<actionName>build</actionName>
<goals>
<goal>compile</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-redeploy</actionName>
<displayName>redeploy</displayName>
<goals>
<goal>tomcat6:redeploy</goal>
</goals>
</action>
</actions>