-
Notifications
You must be signed in to change notification settings - Fork 4
/
nbactions.xml
31 lines (31 loc) · 925 Bytes
/
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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-maven-tomcat7-run-war</actionName>
<displayName>maven-tomcat7-run-war</displayName>
<goals>
<goal>tomcat7:run-war</goal>
</goals>
</action>
<action>
<actionName>build</actionName>
<packagings>
<packaging>war</packaging>
</packagings>
<goals>
<goal>package</goal>
</goals>
</action>
<action>
<actionName>run</actionName>
<packagings>
<packaging>war</packaging>
</packagings>
<goals>
<goal>tomcat7:run-war</goal>
</goals>
<properties>
<netbeans.deploy>true</netbeans.deploy>
</properties>
</action>
</actions>