2014-09-07 21:10:04 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<actions>
|
|
|
|
<action>
|
|
|
|
<actionName>run</actionName>
|
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>-X</goal>
|
|
|
|
<goal>-e</goal>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
2015-02-02 06:52:31 +00:00
|
|
|
<exec.args>-classpath %classpath jace.JaceApplication</exec.args>
|
2014-09-07 21:10:04 +00:00
|
|
|
<exec.executable>java</exec.executable>
|
|
|
|
</properties>
|
|
|
|
</action>
|
|
|
|
<action>
|
2014-09-20 16:11:14 +00:00
|
|
|
<actionName>profile</actionName>
|
2014-09-07 21:10:04 +00:00
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
2015-02-02 06:52:31 +00:00
|
|
|
<exec.args>-classpath %classpath jace.JaceApplication</exec.args>
|
2014-09-07 21:10:04 +00:00
|
|
|
<exec.executable>java</exec.executable>
|
2014-09-20 16:11:14 +00:00
|
|
|
<jpda.listen>true</jpda.listen>
|
2014-09-07 21:10:04 +00:00
|
|
|
</properties>
|
|
|
|
</action>
|
|
|
|
<action>
|
2014-09-20 16:11:14 +00:00
|
|
|
<actionName>debug</actionName>
|
2014-09-07 21:10:04 +00:00
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
2015-02-02 06:52:31 +00:00
|
|
|
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath jace.JaceApplication</exec.args>
|
2014-09-07 21:10:04 +00:00
|
|
|
<exec.executable>java</exec.executable>
|
2014-09-20 16:11:14 +00:00
|
|
|
<jpda.listen>true</jpda.listen>
|
2014-09-07 21:10:04 +00:00
|
|
|
</properties>
|
|
|
|
</action>
|
2014-09-20 16:11:14 +00:00
|
|
|
|
2014-09-07 21:10:04 +00:00
|
|
|
</actions>
|