将maven与外部构建脚本一起使用

时间:2012-10-30 18:56:05

标签: maven maven-install-plugin

我的应用程序取决于第三方耳朵(它解构它,添加/修改其中的一些项目,并将其重建为新耳朵)。必须使用第三方构建脚本构建第三方耳朵。

我正在尝试学习“maven-y”方式来设置它。我希望我需要将第三方耳机安装到我的存储库中。

我想为第三方耳朵创建一个pom.xml,它将构建第三方耳朵并安装/部署它。我创建了一个pom.xml,它成功地调用了第三方构建脚本(通过maven-antrun-plugin),并在默认的maven ear项目所在的位置创建了耳朵。

我的问题是,maven的安装插件失败了,因为它无法找到存档(它希望包装在工件对象上设置属性的任何插件,maven-antrun-plugin不会这样做。) / p>

mvn package可以正常工作并产生耳朵。

运行mvn install时的确切错误消息如下所示:

[ERROR] Failed to execute goal org.apache.maven.plugins:maven-install-plugin:2.3.1:install (default-install) on project third_party_ear: The
packaging for this project did not assign a file to the build artifact -> [Help 1]

有没有更好的方法来解决这个问题?

<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.thirdparty</groupId>
    <artifactId>third_party_ear</artifactId>
    <version>9.0</version>
    <packaging>ear</packaging>

    <name>third_party_ear</name>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-ear-plugin</artifactId>
                <version>2.6</version>
                <executions>
                    <execution>
                        <id>default-ear</id>
                        <phase>none</phase>
                    </execution>
                    <execution>
                        <id>default-generate-application-xml</id>
                        <phase>none</phase>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <configuration>
                            <target>
                                <subant target="build-ear" antfile="build.xml" buildpath="${project.basedir}"/>
                            </target>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

1 个答案:

答案 0 :(得分:2)

当您指定<packaging>ear</packaging>时,您告诉Maven调用为该包装指定的整个生命周期。

在您的情况下,您要做的是编写一个包装器pom.xml,它只是弹出您的第三方构建脚本而不调用EAR生命周期并将生成的工件附加到Maven的反应器......

这样的事情应该有效

<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.thirdparty</groupId>
    <artifactId>third_party_ear</artifactId>
    <version>9.0</version>
    <packaging>pom</packaging>

    <name>third_party_ear</name>

    <build>
        <plugins>
            <plugin>
                <artifactId>maven-antrun-plugin</artifactId>
                <version>1.7</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <configuration>
                            <target>
                                <subant target="build-ear" antfile="build.xml" buildpath="${project.basedir}"/>
                                <attachartifact file="${project.build.directory}/${project.build.finalName}.ear" type="ear"/>
                            </target>
                        </configuration>
                        <goals>
                            <goal>run</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

可能会有一些轻微的故障因为pom的包装不同......但由于这不是类路径相关的工件,所以它们不应该影响你。

请注意,attachartifact ANT任务可以从任何地方附加工件,因此您无需与ANT对抗以将文件置于“正确”的位置......尽管遵循该约定会更好。您可能不想使用project.build.finalName并对文件名进行硬编码。