-
Notifications
You must be signed in to change notification settings - Fork 22
/
nbactions.xml
27 lines (27 loc) · 1.02 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>jetty:stop</goal>
<!--<goal>clean</goal>-->
<goal>jetty:run</goal>
</goals>
<properties>
<Env.MAVEN_OPTS>-Xmx512M -XX:MaxPermSize=512M -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Duser.country=US -Duser.language=en -Duser.timezone=UTC</Env.MAVEN_OPTS>
</properties>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>jetty:stop</goal>
<!--<goal>clean</goal>-->
<goal>jetty:run</goal>
</goals>
<properties>
<jpda.listen>maven</jpda.listen>
<netbeans.deploy.debugmode>true</netbeans.deploy.debugmode>
<Env.MAVEN_OPTS>-Xmx512M -XX:MaxPermSize=512M -XX:+UseConcMarkSweepGC -XX:+CMSClassUnloadingEnabled -Duser.country=US -Duser.language=en -Duser.timezone=UTC</Env.MAVEN_OPTS>
</properties>
</action>
</actions>