-
Notifications
You must be signed in to change notification settings - Fork 0
/
nbactions.xml
81 lines (77 loc) · 3 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
<?xml version="1.0" encoding="UTF-8"?>
<!--
LICENSE
"THE BEER-WARE LICENSE" (Revision 43):
"Sven Strittmatter" <weltraumschaf(at)googlemail(dot)com> wrote this file.
As long as you retain this notice you can do whatever you want with
this stuff. If we meet some day, and you think this stuff is worth it,
you can buy me a non alcohol-free beer in return.
Copyright (C) 2012 "Sven Strittmatter" <weltraumschaf(at)googlemail(dot)com>
-->
<actions>
<action>
<actionName>run</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2:exec</goal>
</goals>
</action>
<action>
<actionName>debug</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2:exec</goal>
</goals>
<properties>
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath de.weltraumschaf.umleto.App ./TestClass.java</exec.args>
<exec.executable>java</exec.executable>
<exec.classpathScope>runtime</exec.classpathScope>
<jpda.listen>true</jpda.listen>
<exec.workingdir>/Users/sxs/src/java/umleto</exec.workingdir>
</properties>
</action>
<action>
<actionName>profile</actionName>
<goals>
<goal>process-classes</goal>
<goal>org.codehaus.mojo:exec-maven-plugin:1.2:exec</goal>
</goals>
<properties>
<exec.args>${profiler.args} -classpath %classpath de.weltraumschaf.umleto.App ./TestClass.java</exec.args>
<exec.executable>${profiler.java}</exec.executable>
<exec.workingdir>/Users/sxs/src/java/umleto</exec.workingdir>
</properties>
</action>
<action>
<actionName>build</actionName>
<goals>
<goal>install</goal>
</goals>
<properties>
<gpg.passphrase></gpg.passphrase>
<gpg.executable>/usr/local/bin/gpg</gpg.executable>
</properties>
</action>
<action>
<actionName>rebuild</actionName>
<goals>
<goal>clean</goal>
<goal>install</goal>
</goals>
<properties>
<gpg.passphrase></gpg.passphrase>
<gpg.executable>/usr/local/bin/gpg</gpg.executable>
</properties>
</action>
<action>
<actionName>build-with-dependencies</actionName>
<reactor>also-make</reactor>
<goals>
<goal>install</goal>
</goals>
<properties>
<gpg.passphrase></gpg.passphrase>
<gpg.executable>/usr/local/bin/gpg</gpg.executable>
</properties>
</action>
</actions>