gpt4 book ai didi

java - 如何使用现有的 pom.xml 将第三方文件发布到远程 Maven 仓库?

转载 作者:搜寻专家 更新时间:2023-11-01 01:53:41 24 4
gpt4 key购买 nike

我有一些第三方 jar,我想上传到我的 nexus maven 存储库,到目前为止,我已经找到了两种方法。

mvn deploy:deploy-file -DgroupId=<group-id> \
-DartifactId=<artifact-id> \
-Dversion=<version> \
-Dpackaging=<type-of-packaging> \
-Dfile=<path-to-file> \
-DrepositoryId=<id-to-map-on-server-section-of-settings.xml> \
-Durl=<url-of-the-repository-to-deploy>

我希望第 3 方库能够经常更新,比如每季度更新一次,只要有安全更新/发布,可能会更多。

上面的两种方法都是手动的,您必须键入一个较长的命令或四处单击才能实现。我更喜欢一个不特定于产品或需要冗长命令行选项的简单解决方案。

是否可以通过 mvn deploy 编写一个发布第 3 方 .tar.gz 的 maven pom.xml

我正在使用 maven 3.0.5

更新 根据下面的 radai 回答为我工作的示例 pom.xml。

最佳答案

我们在这里有类似的需求,需要保留非 Maven Artifact 的标签并在我们的关系中更新它们。

我们这样做的方法是在版本控制中有一个“第三方”项目,它存储非 Maven Artifact ,每个 Artifact 都有自己的 pom 文件。

当你升级任何第 3 方时,你会覆盖第三方项目中的旧版本,在相关的 pom 文件中绑定(bind)版本并运行 “mvn deploy” 将其放入我们的存储库。

生成 *.tar.gz 的“构建”的 pom 文件将具有这样的 pom:

<?xml version="1.0" encoding="UTF-8"?>
<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>

<artifactId>myArtifact</artifactId>
<packaging>pom</packaging> <!-- so it wont auto-create any *.jars or anything -->

<build>
<resources>
<resource>
<!-- put a configuration here to copy your artifact to /target -->
</resource>
</resources>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<executions>
<execution>
<id>copy static resource files</id>
<goals>
<goal>resources</goal>
</goals>
<phase>generate-sources</phase>
</execution>
</executions>
</plugin>

<plugin>
<!-- this creates your *.tar.gz -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-assembly-plugin</artifactId>
<executions>
<execution>
<id>Create final ZIP package</id>
<phase>package</phase>
<goals>
<goal>single</goal>
</goals>
<configuration>
<appendAssemblyId>true</appendAssemblyId>
<descriptors>
<descriptor>platform-assembly.xml</descriptor>
</descriptors>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>

旁边有一个貌似描述符:这个将一堆东西打包为 *.tar.gz,保留 *.sh 文件的可执行标志。您将需要进行编辑以满足您的需求

<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
<id>${envClassifier}</id>
<formats>
<format>tar.gz</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>yourTargetDir</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>**/*.sh</exclude>
</excludes>
</fileSet>
<fileSet>
<directory>yourTargetDir</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>**/*.sh</include>
</includes>
<fileMode>755</fileMode>
</fileSet>
</fileSets>
</assembly>

编辑:如果您不需要提取/弄乱/*.tar.gz Artifact ,那么您有一个更简单的选择 - 使用 build helper maven plugin's attach artifact goal只需附加您的 *.tar.gz 即可包含在部署/安装中

您显然需要更新依赖于这个新 Artifact 版本的所有步骤。

关于java - 如何使用现有的 pom.xml 将第三方文件发布到远程 Maven 仓库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17430382/

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