47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <?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:3.0.0:exec</goal>
 | |
|             </goals>
 | |
|             <properties>
 | |
|                 <exec.args>-XstartOnFirstThread -classpath %classpath electrosphere.main.Main</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:3.0.0:exec</goal>
 | |
|             </goals>
 | |
|             <properties>
 | |
|                 <exec.args>-agentlib:jdwp=transport=dt_socket,server=n,address=${jpda.address} -XstartOnFirstThread -classpath %classpath electrosphere.main.Main</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:3.0.0:exec</goal>
 | |
|             </goals>
 | |
|             <properties>
 | |
|                 <exec.args>-XstartOnFirstThread -classpath %classpath electrosphere.main.Main</exec.args>
 | |
|                 <exec.executable>java</exec.executable>
 | |
|             </properties>
 | |
|         </action>
 | |
|     </actions>
 |