Maven:如何在分叉的 JVM 中执行依赖项?
Maven: How to execute a dependency in a forked JVM?
使用 maven-exec-plugin
和 java 目标我执行一个 jar 程序来验证我项目中的一些文件。当验证失败时,它调用 System.exit
到 return 非零 return 代码。
问题在于它与 Maven 在同一个 JVM 中执行,因此当它调用 exit 时,处理停止,因为它 does not fork。
我将其配置为使用 maven-exec-plugin
和 java 目标执行(如 here 中)。执行 jar 在我的 Nexus 存储库中,所以我想将它作为依赖项下载到我的 pom.xml.
配置 maven-exec-plugin 依赖项的一个非常好的功能是它会下载 jar 及其所有依赖项,因此无需使用 maven assembly 插件将所有 jar 包含在可执行文件中。
如何配置我的 pom.xml 以执行 jar 依赖项并在失败时正确停止?
我解决了我的问题。基本上,我必须使用 exec
目标 和 运行 java 可执行文件,而不是使用 java
目标。下面的代码使用 main 方法设置 classpath 和 class。
这个使用 pom.xml 和 Nexus 存储库的解决方案比只为我的用户处理一个 jar 文件有很多优势:
- 无需在机器上安装任何可以 运行 它的东西,无论是开发机器还是持续集成机器。
- 验证工具开发者可以发布新版本,会自动更新
- 开发者可以通过一个简单的参数将其关闭。
- 也解决了原来的问题:验证工具会在一个单独的进程中执行,所以maven进程在调用System.exit.
时不会中止
这里有一条评论pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.company</groupId>
<artifactId>yourId</artifactId>
<version>1.0</version>
<properties>
<!--
Skip the validation executing maven setting the parameter below
mvn integration-test -Dvalidation.skip
-->
<validation.skip>false</validation.skip>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>MyValidator</id>
<phase>integration-test</phase> <!-- you can associate to any maven phase -->
<goals>
<goal>exec</goal> <!-- forces execution in another process -->
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable> <!-- java must be in your PATH -->
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>false</includePluginDependencies>
<skip>${validation.skip}</skip>
<arguments>
<argument>-classpath</argument>
<classpath/> <!-- will include your class path -->
<mainClass>com.company.yourpackage.AppMain</mainClass> <!-- the class that has your main file -->
<argument>argument.xml</argument> <!-- any argument for your executable -->
</arguments>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<!-- Specify your executable jar here -->
<groupId>com.company.validator</groupId>
<artifactId>validatorId</artifactId>
<version>RELEASE</version> <!-- you can specify a fixed version here -->
<type>jar</type>
</dependency>
</dependencies>
</project>
您可以 运行 多个可执行文件传递其 id:mvn exec:exec@MyValidator
使用 maven-exec-plugin
和 java 目标我执行一个 jar 程序来验证我项目中的一些文件。当验证失败时,它调用 System.exit
到 return 非零 return 代码。
问题在于它与 Maven 在同一个 JVM 中执行,因此当它调用 exit 时,处理停止,因为它 does not fork。
我将其配置为使用 maven-exec-plugin
和 java 目标执行(如 here 中)。执行 jar 在我的 Nexus 存储库中,所以我想将它作为依赖项下载到我的 pom.xml.
配置 maven-exec-plugin 依赖项的一个非常好的功能是它会下载 jar 及其所有依赖项,因此无需使用 maven assembly 插件将所有 jar 包含在可执行文件中。
如何配置我的 pom.xml 以执行 jar 依赖项并在失败时正确停止?
我解决了我的问题。基本上,我必须使用 exec
目标 和 运行 java 可执行文件,而不是使用 java
目标。下面的代码使用 main 方法设置 classpath 和 class。
这个使用 pom.xml 和 Nexus 存储库的解决方案比只为我的用户处理一个 jar 文件有很多优势:
- 无需在机器上安装任何可以 运行 它的东西,无论是开发机器还是持续集成机器。
- 验证工具开发者可以发布新版本,会自动更新
- 开发者可以通过一个简单的参数将其关闭。
- 也解决了原来的问题:验证工具会在一个单独的进程中执行,所以maven进程在调用System.exit. 时不会中止
这里有一条评论pom.xml
:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.company</groupId>
<artifactId>yourId</artifactId>
<version>1.0</version>
<properties>
<!--
Skip the validation executing maven setting the parameter below
mvn integration-test -Dvalidation.skip
-->
<validation.skip>false</validation.skip>
<java.version>1.8</java.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<executions>
<execution>
<id>MyValidator</id>
<phase>integration-test</phase> <!-- you can associate to any maven phase -->
<goals>
<goal>exec</goal> <!-- forces execution in another process -->
</goals>
</execution>
</executions>
<configuration>
<executable>java</executable> <!-- java must be in your PATH -->
<includeProjectDependencies>false</includeProjectDependencies>
<includePluginDependencies>false</includePluginDependencies>
<skip>${validation.skip}</skip>
<arguments>
<argument>-classpath</argument>
<classpath/> <!-- will include your class path -->
<mainClass>com.company.yourpackage.AppMain</mainClass> <!-- the class that has your main file -->
<argument>argument.xml</argument> <!-- any argument for your executable -->
</arguments>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<!-- Specify your executable jar here -->
<groupId>com.company.validator</groupId>
<artifactId>validatorId</artifactId>
<version>RELEASE</version> <!-- you can specify a fixed version here -->
<type>jar</type>
</dependency>
</dependencies>
</project>
您可以 运行 多个可执行文件传递其 id:mvn exec:exec@MyValidator