无法阻止 Maven 部署插件将工件发布到没有版本时间戳后缀的 nexus
Can't prevent Maven deploy plugin from publishing artefact to nexus without version timestamp suffix
我想将项目的 artefact .jar 发布到我的 nexus 存储库。然而,maven deploy
插件总是包含部署工件的时间戳后缀。我按照文档省略了后缀,但没有任何效果 - 它仍在添加它。
文档指出 <uniqueVersion></uniqueVersion>
应该设置为 false
我在 pom.xml
中为每个存储库配置所做的,我也将它用作标志 mvn deploy -DuniqueVersion=false
.但是没有任何效果。
Nexus 中的结果始终具有提到的后缀
这是我的 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>com.company.tools</groupId>
<artifactId>com.company.tools.myTool</artifactId>
<version>1.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.10</version>
</dependency>
<dependency>
<groupId>net.sf.jt400</groupId>
<artifactId>jt400</artifactId>
<version>9.4</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>nexus</id>
<name>Corporate Repository</name>
<url>http://192.168.141.10:8081/repository/maven-releases/</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>nexus</id>
<name>Corporate Snapshots</name>
<url>http://192.168.141.10:8081/repository/maven-snapshots/</url>
<layout>legacy</layout>
</snapshotRepository>
</distributionManagement>
</project>
知道我在这里遗漏或误解了什么吗?
对 <uniqueVersion></uniqueVersion>
的支持已在 Maven 2.x 中弃用,并在 Maven 3 中完全删除。因此,除非您使用的是 EOL Maven 2,否则这预计不会起作用。请参阅“主要版本在此处升级到 3.0 版:
我想将项目的 artefact .jar 发布到我的 nexus 存储库。然而,maven deploy
插件总是包含部署工件的时间戳后缀。我按照文档省略了后缀,但没有任何效果 - 它仍在添加它。
文档指出 <uniqueVersion></uniqueVersion>
应该设置为 false
我在 pom.xml
中为每个存储库配置所做的,我也将它用作标志 mvn deploy -DuniqueVersion=false
.但是没有任何效果。
Nexus 中的结果始终具有提到的后缀
这是我的 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>com.company.tools</groupId>
<artifactId>com.company.tools.myTool</artifactId>
<version>1.3-SNAPSHOT</version>
<build>
<plugins>
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>2.8.1</version>
<executions>
<execution>
<id>default-deploy</id>
<phase>deploy</phase>
<goals>
<goal>deploy</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencies>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.6</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.10</version>
</dependency>
<dependency>
<groupId>net.sf.jt400</groupId>
<artifactId>jt400</artifactId>
<version>9.4</version>
</dependency>
</dependencies>
<distributionManagement>
<repository>
<uniqueVersion>false</uniqueVersion>
<id>nexus</id>
<name>Corporate Repository</name>
<url>http://192.168.141.10:8081/repository/maven-releases/</url>
<layout>default</layout>
</repository>
<snapshotRepository>
<uniqueVersion>false</uniqueVersion>
<id>nexus</id>
<name>Corporate Snapshots</name>
<url>http://192.168.141.10:8081/repository/maven-snapshots/</url>
<layout>legacy</layout>
</snapshotRepository>
</distributionManagement>
</project>
知道我在这里遗漏或误解了什么吗?
对 <uniqueVersion></uniqueVersion>
的支持已在 Maven 2.x 中弃用,并在 Maven 3 中完全删除。因此,除非您使用的是 EOL Maven 2,否则这预计不会起作用。请参阅“主要版本在此处升级到 3.0 版: