我的应用程序依赖于第三方耳朵(它解构它,添加/修改其中的一些项目,并将其重构为新耳朵)。第三方耳朵必须使用第三方构建脚本来构建。
我正在尝试学习设置它的“maven-y”方式。我希望我需要将第三方 ear 安装到我的存储库中。
我想为第三方耳朵创建一个 pom.xml,它将构建第三方耳朵并安装/部署它。我创建了一个 pom.xml,它成功调用了第三方构建脚本(通过 maven-antrun-plugin),并在默认的 maven ear 项目所在的位置创建了 ear。
我的问题是 maven 的安装插件失败,因为它找不到存档(它希望打包的任何插件都在工件对象上设置了一个属性,而 maven-antrun-plugin 没有这样做)。
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>