-
Notifications
You must be signed in to change notification settings - Fork 42
/
nbactions.xml
30 lines (30 loc) · 944 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>nbm</packaging>
</packagings>
<goals>
<goal>nbm:cluster</goal>
<goal>nbm:run-ide</goal>
</goals>
<properties>
<netbeans.run.params>-J-Dcom.github.alexfalappa.nbspringboot.level=100 -J-Dcom.github.alexfalappa.nbspringboot.actions.level=600</netbeans.run.params>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>nbm</packaging>
</packagings>
<goals>
<goal>nbm:cluster</goal>
<goal>nbm:run-ide</goal>
</goals>
<properties>
<jpda.listen>true</jpda.listen>
<netbeans.run.params.debug>-J-Xdebug -J-Xrunjdwp:transport=dt_socket,suspend=n,server=n,address=${jpda.address} -J-Dcom.github.alexfalappa.nbspringboot.level=100 -J-Dcom.github.alexfalappa.nbspringboot.actions.level=600</netbeans.run.params.debug>
</properties>
</action>
</actions>