-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnbactions.xml
More file actions
25 lines (25 loc) · 858 Bytes
/
nbactions.xml
File metadata and controls
25 lines (25 loc) · 858 Bytes
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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>process-classes</goal>
<goal>exec:exec</goal>
</goals>
<properties>
<jshell.run.enable>true</jshell.run.enable>
</properties>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>process-classes</goal>
<goal>exec:exec</goal>
</goals>
<properties>
<jpda.listen>true</jpda.listen>
<exec.debug.arg>-Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address}</exec.debug.arg>
<jshell.run.enable>true</jshell.run.enable>
</properties>
</action>
</actions>