diff options
Diffstat (limited to 'trunk/ardor3d-lwjgl/nbactions-win32.xml')
-rw-r--r-- | trunk/ardor3d-lwjgl/nbactions-win32.xml | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/trunk/ardor3d-lwjgl/nbactions-win32.xml b/trunk/ardor3d-lwjgl/nbactions-win32.xml new file mode 100644 index 0000000..cf5aba7 --- /dev/null +++ b/trunk/ardor3d-lwjgl/nbactions-win32.xml @@ -0,0 +1,49 @@ +<?xml version="1.0" encoding="UTF-8"?> +<actions> + <action> + <actionName>run</actionName> + <goals> + <goal>process-classes</goal> + <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal> + </goals> + <properties> + <exec.classpathScope>runtime</exec.classpathScope> + <exec.args>-classpath %classpath ${packageClassName}</exec.args> + <exec.executable>java</exec.executable> + </properties> + </action> + <action> + <actionName>debug</actionName> + <goals> + <goal>process-classes</goal> + <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal> + </goals> + <properties> + <exec.classpathScope>runtime</exec.classpathScope> + <exec.args>-Xdebug -Xrunjdwp:transport=dt_socket,server=n,address=${jpda.address} -classpath %classpath ${packageClassName}</exec.args> + <jpda.listen>true</jpda.listen> + <exec.executable>java</exec.executable> + </properties> + </action> + <action> + <actionName>profile</actionName> + <goals> + <goal>process-classes</goal> + <goal>org.codehaus.mojo:exec-maven-plugin:1.1.1:exec</goal> + </goals> + <properties> + <exec.args>${profiler.args}-classpath %classpath ${packageClassName}</exec.args> + <profiler.action>profile</profiler.action> + <exec.executable>${profiler.java}</exec.executable> + </properties> + </action> + <action> + <actionName>build</actionName> + <goals> + <goal>install</goal> + </goals> + <properties> + </properties> + </action> + + </actions> |