有没有办法在 maven 尝试解析它们之前安装 maven 依赖项?

2022-09-02 04:47:52

我必须从远程位置解压缩一些依赖项,并在本地安装它们。

我成功获取了它们(使用antrun插件)并安装它们(使用安装插件)

但是,如果我将它们定义为依赖项(),maven首先会尝试解析它们,然后,如果成功,则继续进行antrun并安装。<dependency>..</dependency>

我还尝试了构建-帮助器-插件及其附加工件,但它没有做任何事情(它甚至没有将工件添加到最终的war文件中)。

那么,如何在 maven 尝试解析依赖关系之前运行我的执行?


答案 1

有趣的问题!一种尝试(也许)是使用多模块项目设置。

在父项目中提取并安装依赖项,并在子模块中使用它们。我这样测试了我的假设:

父项.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 的生成中提供依赖项,则子模块项目应该是可生成的。


答案 2

您应该考虑运行Arctual Repository Manager(例如Archiva),然后您可以将它们加载到那里,然后在您的文件中添加Archiva服务器,而不必担心手动进行本地安装,即假设工件尚未在远程存储库中。如果您的“远程位置”是 Maven 存储库,Archiva 也可以透明地代理该存储库。~/.m2/settings.xml


推荐