2017-01-05 23:18:19 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<actions>
|
|
|
|
<action>
|
|
|
|
<actionName>run</actionName>
|
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
2017-01-22 21:41:45 +01:00
|
|
|
<exec.args>-classpath %classpath gui.NewMDIApplication</exec.args>
|
|
|
|
<exec.executable>java</exec.executable>
|
|
|
|
</properties>
|
|
|
|
</action>
|
|
|
|
<action>
|
|
|
|
<actionName>debug</actionName>
|
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
|
|
|
<exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath gui.NewMDIApplication</exec.args>
|
|
|
|
<exec.executable>java</exec.executable>
|
|
|
|
<jpda.listen>true</jpda.listen>
|
|
|
|
</properties>
|
|
|
|
</action>
|
|
|
|
<action>
|
|
|
|
<actionName>profile</actionName>
|
|
|
|
<packagings>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>process-classes</goal>
|
|
|
|
<goal>org.codehaus.mojo:exec-maven-plugin:1.2.1:exec</goal>
|
|
|
|
</goals>
|
|
|
|
<properties>
|
|
|
|
<exec.args>-classpath %classpath gui.NewMDIApplication</exec.args>
|
2017-01-05 23:18:19 +01:00
|
|
|
<exec.executable>java</exec.executable>
|
|
|
|
</properties>
|
|
|
|
</action>
|
2017-02-07 01:53:43 +01:00
|
|
|
<action>
|
|
|
|
<actionName>build</actionName>
|
|
|
|
<packagings>
|
|
|
|
<packaging>*</packaging>
|
|
|
|
</packagings>
|
|
|
|
<goals>
|
|
|
|
<goal>install</goal>
|
|
|
|
</goals>
|
|
|
|
</action>
|
2017-01-05 23:18:19 +01:00
|
|
|
</actions>
|