-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathnbactions.xml
98 lines (98 loc) · 3.41 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
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>exec:exec@run-test</goal>
</goals>
</action>
<action>
<actionName>debug</actionName>
<packagings>
<packaging>jar</packaging>
</packagings>
<goals>
<goal>process-classes</goal>
<goal>exec:exec@run-test</goal>
</goals>
<properties>
<debug.run>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</debug.run>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-Run JNA</actionName>
<displayName>Run (1024) JNA</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-jna</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Debug JNA</actionName>
<displayName>Debug (1024) JNA</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-jna</goal>
</goals>
<properties>
<debug.run>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</debug.run>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-Run JNI</actionName>
<displayName>Run (1024) JNI</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-jni</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Debug JNI</actionName>
<displayName>Debug (1024) JNI</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-jni</goal>
</goals>
<properties>
<debug.run>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</debug.run>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-Run SVM</actionName>
<displayName>Run (1024) Native Lib</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-svm</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-Debug SVM</actionName>
<displayName>Debug (1024) Native Lib</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-svm</goal>
</goals>
<properties>
<debug.run>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address}</debug.run>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-Run Native</actionName>
<displayName>Run (1024) Native</displayName>
<goals>
<goal>compile</goal>
<goal>exec:exec@run-standalone</goal>
</goals>
<properties>
<exec.args>1024</exec.args>
</properties>
</action>
</actions>