我有一个批处理文件,它使用依赖于 tools.jar(来自 JDK)的 maven 运行 java 类。
例如:
mvn -f .\pom.xml -e exec:java -Dfile.encoding="UTF-8" -Dexec.mainClass=MyClass -Dexec.args="%1 %2 %3 %4 %5 %6 %7 %8 %9" -Dexec.classpathScope=runtime
我的程序使用来自 JDK 的 tools.jar,并且我在 maven 中添加了一个指向它的系统依赖项。
由于 exec:java 目标不包括系统依赖项,我想从命令行手动添加依赖项。
虽然我认为它是微不足道的,但我可以找到方法来做到这一点。任何帮助将不胜感激。
谢谢,
阿夫纳
问问题
9067 次
1 回答
10
根据我在maven exec plugin上阅读的内容,它允许您将可执行依赖项配置为插件依赖项。
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.2.1</version>
<configuration>
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>true</includePluginDependencies>
<executableDependency>
<groupId>com.example.myproject</groupId>
<artifactId>mylib</artifactId>
</executableDependency>
<mainClass>com.example.Main</mainClass>
</configuration>
<dependencies>
<dependency>
<groupId>sun.jdk</groupId>
<artifactId>tools</artifactId>
<version>1.5.0</version>
<scope>system</scope>
<systemPath>${java.home}/../lib/tools.jar</systemPath>
</dependency>
</dependencies>
</plugin>
于 2012-07-29T18:53:04.483 回答