-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnbactions.xml
More file actions
27 lines (27 loc) · 761 Bytes
/
nbactions.xml
File metadata and controls
27 lines (27 loc) · 761 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
26
27
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-jetty:run</actionName>
<displayName>jetty:run</displayName>
<goals>
<goal>jetty:run</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-jetty:stop</actionName>
<displayName>jetty:stop</displayName>
<goals>
<goal>jetty:stop</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-jetty:debug</actionName>
<displayName>jetty:debug</displayName>
<goals>
<goal>jetty:run</goal>
</goals>
<properties>
<jpda.listen>maven</jpda.listen>
</properties>
</action>
</actions>