maven试图解决它们之前是否有办法安装maven依赖项?
我必须从远程位置解压一些依赖项并在本地安装。
我成功地获得了它们(使用antrun插件)并安装它们(使用install插件)
但是,如果我将它们定义为依赖关系( <dependency>..</dependency>
),Maven会首先尝试解决它们,只有这样,如果成功,才会继续进行antrun并安装。
我也尝试过构建辅助插件和它的附加构件,但它没有做任何事情(它甚至没有将构件添加到最终的战争文件中)
那么,如何在maven试图解决依赖关系之前运行我的执行?
有趣的问题! 一个尝试(可能)achiv这是使用多模块项目设置。
在父项目中获取并安装依赖关系,并在子模块中使用它们。 我测试了这样的假设:
父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>foo.bar</groupId>
<artifactId>foo.bar.parent</artifactId>
<version>1.0.0</version>
<packaging>pom</packaging>
<modules>
<module>foo.bar.child</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.6</version>
<executions>
<execution>
<phase>validate</phase>
<configuration>
<target>
<echo
message="Hello world!" />
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
模块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>foo.bar</groupId>
<artifactId>foo.bar.child</artifactId>
<version>1.0.0</version>
<parent>
<groupId>foo.bar</groupId>
<artifactId>foo.bar.parent</artifactId>
<version>1.0.0</version>
</parent>
<dependencies>
<dependency>
<artifactId>can.not</artifactId>
<groupId>find.me</groupId>
<version>0.0.0</version>
</dependency>
</dependencies>
</project>
在子模块构建失败之前,我从父pom构建中获取“Hello World”输出(因为缺少依赖关系)。 如果你想在parent.pom的构建中提供依赖项,那么子模块项目应该是可构建的。
您应该查看运行的Artifact Repository Manager(如Archiva),然后您可以将它们加载到那里,并在~/.m2/settings.xml
文件中添加Archiva服务器,无需担心手动执行本地安装,即假定工件不在远程存储库中。 如果你的“远程位置”是一个Maven仓库,Archiva也可以透明地代理它。
我最终分两步进行:
clean
package
时,如果至少没有清理一次,则构建会失败 该解决方案虽然引入了一些复杂性。
链接地址: http://www.djcxy.com/p/29737.html上一篇: Is there are way to install maven dependencies before maven attempts to resolve them?