使用maven執行Java main的2種方式
阿新 • • 發佈:2019-02-02
一:直接在命令列執行
mvn clean compile exec:java -Dexec.mainClass="com.demo.App" -Dexec.args="aaa bbb"
二:使用外掛執行
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>exec-maven-plugin</artifactId> <version>1.4.0</version> <executions> <execution> <phase>test</phase> <goals> <goal>java</goal> </goals> <configuration> <mainClass>com.demo.App</mainClass> <arguments> <argument>11111111</argument> <argument>22222222</argument> </arguments> </configuration> </execution> </executions> </plugin>
配置好外掛後,執行mvn test 即可執行main方法