我愿有一个马文目标,促使执行一个 j马类。 Im试图通过Makefile
迁移,行文如下:
neotest:
mvn exec:java -Dexec.mainClass="org.dhappy.test.NeoTraverse"
我愿mvn Newtest
,以制作make Newtest
is present.
http://mojo.codehaus.org/exec-maven-plugin/usage.html Maven 任务:网页有任何形式的直截了当。
目前:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.1</version>
<executions><execution>
<goals><goal>java</goal></goals>
</execution></executions>
<configuration>
<mainClass>org.dhappy.test.NeoTraverse</mainClass>
</configuration>
</plugin>
不过,我不知道如何触发从指挥线的原始.。