最佳答案
我希望 Maven 的目标能够触发 Java 类的执行。我正在尝试通过 Makefile
迁移线路:
neotest:
mvn exec:java -Dexec.mainClass="org.dhappy.test.NeoTraverse"
我想 mvn neotest
生产什么 make neotest
目前所做的。
执行插件文档和 Maven Ant 任务页面都没有任何直接的例子。
目前,我在:
<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>
但是,我不知道如何从命令行触发插件。