gpt4 book ai didi

maven - 在 maven 仓库中安装 tar.gz 文件

转载 作者:行者123 更新时间:2023-12-05 02:21:46 25 4
gpt4 key购买 nike

我有一个压缩的 tar.gz 文件,我想将它用作其他项目的依赖项。

我无法使用以下命令将其上传到 maven 存储库,因为 maven 不支持 tar.gz 打包:

mvn install:install-file -Dfile=/path-to-file/XXX-0.0.1-SNAPSHOT.tar.gz -DpomFile=/path-to-pom/pom.xml

示例 pom.xml

<project>

<modelVersion>4.0.0</modelVersion>
<name>XXX</name>
<groupId>com.example.file</groupId>
<artifactId>xxx</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>tar.gz</packaging>

</project>

如果我将上述命令与 rar 打包一起使用,则 maven 会上传 XXX-0.0.1-SNAPSHOT.tar.gz 文件,但扩展名为 .rar。

除了为自定义包开发maven插件外,有没有办法将tar.gz上传到maven仓库中,然后在其他项目中作为依赖使用它?

(注意:我只想使用 tar.gz 而不是任何其他压缩,例如 rar 等)。

最佳答案

@khmarbaise,感谢您的正确指导。使用附加的 Artifact 解决了该问题。这是我的 pom.xml 中的一个片段:

<build>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>build-helper-maven-plugin</artifactId>
<version>1.7</version>
<extensions>true</extensions>
<executions>
<execution>
<id>attach-artifacts</id>
<phase>package</phase>
<goals>
<goal>attach-artifact</goal>
</goals>
<configuration>
<artifacts>
<artifact>
<file>xxx-0.0.1-SNAPSHOT.tar.gz</file>
<type>tar.gz</type>
<classifier>optional</classifier>
</artifact>
</artifacts>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>

同样可以在其他项目中添加依赖如下:

<dependencies>
<dependency>
<groupId>your.group.id</groupId>
<artifactId>xxx</artifactId>
<version>0.0.1-SNAPSHOT</version>
<classifier>optional</classifier>
<type>tar.gz</type>
</dependency>
</dependencies>

关于maven - 在 maven 仓库中安装 tar.gz 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32088885/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com