-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnbactions.xml
More file actions
55 lines (55 loc) · 1.44 KB
/
nbactions.xml
File metadata and controls
55 lines (55 loc) · 1.44 KB
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>CUSTOM-Remote run</actionName>
<displayName>Remote run</displayName>
<goals>
<goal>install</goal>
<goal>antrun:run@exec</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Remote debug</actionName>
<displayName>Remote debug</displayName>
<goals>
<goal>install</goal>
<goal>antrun:run@debug</goal>
</goals>
</action>
<action>
<actionName>build</actionName>
<packagings>
<packaging>*</packaging>
</packagings>
<goals>
<goal>install</goal>
</goals>
<properties>
<skipTests>true</skipTests>
</properties>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>install</goal>
<goal>antrun:run@debug</goal>
</goals>
<properties>
<jpda.listen>true</jpda.listen>
<jpda.address>192.168.1.168:8000</jpda.address>
</properties>
</action>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>install</goal>
<goal>antrun:run@exec</goal>
</goals>
</action>
</actions>