hlrc / client / java / nbactions.xml @ 3aa7a8f3
History | View | Annotate | Download (1.813 KB)
1 | 0c286af0 | Simon Schulz | <?xml version="1.0" encoding="UTF-8"?>
|
---|---|---|---|
2 | <actions>
|
||
3 | <action>
|
||
4 | <actionName>run</actionName> |
||
5 | <packagings>
|
||
6 | <packaging>jar</packaging> |
||
7 | </packagings>
|
||
8 | <goals>
|
||
9 | <goal>process-classes</goal> |
||
10 | <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal> |
||
11 | </goals>
|
||
12 | <properties>
|
||
13 | <exec.args>-classpath %classpath de.uni-bielefeld.cit-ec.opensource.hlrc.main.Cmd --idle</exec.args> |
||
14 | <exec.executable>java</exec.executable> |
||
15 | </properties>
|
||
16 | </action>
|
||
17 | <action>
|
||
18 | <actionName>debug</actionName> |
||
19 | <packagings>
|
||
20 | <packaging>jar</packaging> |
||
21 | </packagings>
|
||
22 | <goals>
|
||
23 | <goal>process-classes</goal> |
||
24 | <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal> |
||
25 | </goals>
|
||
26 | <properties>
|
||
27 | <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath de.uni-bielefeld.cit-ec.opensource.hlrc.main.Cmd --idle</exec.args> |
||
28 | <exec.executable>java</exec.executable> |
||
29 | <jpda.listen>true</jpda.listen> |
||
30 | </properties>
|
||
31 | </action>
|
||
32 | <action>
|
||
33 | <actionName>profile</actionName> |
||
34 | <packagings>
|
||
35 | <packaging>jar</packaging> |
||
36 | </packagings>
|
||
37 | <goals>
|
||
38 | <goal>process-classes</goal> |
||
39 | <goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal> |
||
40 | </goals>
|
||
41 | <properties>
|
||
42 | <exec.args>-classpath %classpath de.uni-bielefeld.cit-ec.opensource.hlrc.main.Cmd --idle</exec.args> |
||
43 | <exec.executable>java</exec.executable> |
||
44 | </properties>
|
||
45 | </action>
|
||
46 | </actions> |