Maven:如何在派生的JVM中执行依赖关系?

时间:2018-11-30 21:28:48

标签: maven maven-exec-plugin

我的存储库中有一个jar程序,用于验证项目中的某些文件。验证失败时,返回码为非零。该jar位于我的Nexus存储库中,因此我想将其作为依赖项下载。

我将其配置为与maven-exec-plugin和一个 java 目标一起执行(例如在here中执行),但是它在与Maven相同的JVM中执行,Maven构建在以下时间停止因为它does not fork,所以它称为System.exit

配置maven-exec-plugin依赖项的一个很好的功能是它下载了jar及其所有依赖项,因此不必使用maven程序集插件将所有jar都包含在可执行文件中。

如何配置pom.xml以执行jar依赖项并在失败时正确停止?

1 个答案:

答案 0 :(得分:0)

我解决了我的问题。此解决方案具有很多优点:

  • 无需在将运行它的机器上安装任何东西,无论是开发者机器还是连续集成的机器。
  • 验证工具开发人员可以发布新版本,并且它将自动更新。
  • 开发人员可以使用简单的参数将其关闭。
  • 也解决了原始问题:验证工具将在单独的进程中执行,因此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>My Validatior</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>