-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnbactions.xml
63 lines (55 loc) · 1.76 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
<?xml version="1.0" encoding="UTF-8"?>
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>clean</goal>
<goal>process-classes</goal>
<goal>exec:java</goal>
</goals>
<properties>
<exec.mainClass>jp.seraphyware.textencodechanger.MainApp</exec.mainClass>
</properties>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>clean</goal>
<goal>process-classes</goal>
<goal>exec:exec</goal>
</goals>
<properties>
<exec.executable>java</exec.executable>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath jp.seraphyware.textencodechanger.MainApp</exec.args>
<jpda.listen>true</jpda.listen>
</properties>
</action>
<action>
<actionName>CUSTOM-exec</actionName>
<displayName>exec (en)</displayName>
<goals>
<goal>clean</goal>
<goal>process-classes</goal>
<goal>exec:exec</goal>
</goals>
<properties>
<exec.executable>java</exec.executable>
<exec.args>-Duser.language=en -classpath %classpath jp.seraphyware.textencodechanger.MainApp</exec.args>
</properties>
</action>
<action>
<actionName>CUSTOM-site</actionName>
<displayName>site</displayName>
<goals>
<goal>clean</goal>
<goal>site</goal>
</goals>
</action>
<action>
<actionName>CUSTOM-test</actionName>
<displayName>test</displayName>
<goals>
<goal>test</goal>
</goals>
</action>
</actions>