-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnbactions-jetty-profile.xml
36 lines (35 loc) · 1.14 KB
/
nbactions-jetty-profile.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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>war</packaging>
<packaging>ear</packaging>
<packaging>ejb</packaging>
</packagings>
<goals>
<goal>jetty:run</goal>
</goals>
<properties>
<netbeans.deploy>false</netbeans.deploy>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>war</packaging>
<packaging>ear</packaging>
<packaging>ejb</packaging>
</packagings>
<goals>
<goal>install</goal>
<goal>jetty:run</goal>
<goal>-o</goal>
</goals>
<properties>
<netbeans.deploy.debugmode>true</netbeans.deploy.debugmode>
<netbeans.deploy>false</netbeans.deploy>
<jpda.listen>maven</jpda.listen>
</properties>
</action>
</actions>