Maven 从依赖 jar 中删除版本
Maven remove version from dependency jar
我想知道是否有办法从 maven 依赖项中删除版本号。
假设对于我的项目,我想使用 Maven 依赖插件获取 commons-lang3
3.4
:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
我的 pom 配置说,它正在将依赖项提取到我项目中的 ./lib
目录。
我想要实现的是从 commons-lang3-3.4.jar
中即时删除版本号。它看起来像:
./lib/commons-lang3.jar
问题:有什么办法可以做到吗?
指定 finalName 在这里没有帮助。
<build>
<finalName>${project.name}-testing</finalName>
</build>
低于我现有的配置:
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${dir.javaLibs}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
要从复制的依赖项中删除版本,您可以使用 maven-dependency-plugin
的 stripVersion
选项:
Strip artifact version during copy
默认值为false
。
因此,鉴于您现有的配置,这里是更改:
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${dir.javaLibs}</outputDirectory>
<!-- new configuration entry below-->
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
我想知道是否有办法从 maven 依赖项中删除版本号。
假设对于我的项目,我想使用 Maven 依赖插件获取 commons-lang3
3.4
:
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.4</version>
</dependency>
我的 pom 配置说,它正在将依赖项提取到我项目中的 ./lib
目录。
我想要实现的是从 commons-lang3-3.4.jar
中即时删除版本号。它看起来像:
./lib/commons-lang3.jar
问题:有什么办法可以做到吗?
指定 finalName 在这里没有帮助。
<build>
<finalName>${project.name}-testing</finalName>
</build>
低于我现有的配置:
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${dir.javaLibs}</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>
要从复制的依赖项中删除版本,您可以使用 maven-dependency-plugin
的 stripVersion
选项:
Strip artifact version during copy
默认值为false
。
因此,鉴于您现有的配置,这里是更改:
<project>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-dependency-plugin</artifactId>
<version>2.10</version>
<executions>
<execution>
<id>copy-dependencies</id>
<phase>process-resources</phase>
<goals>
<goal>copy-dependencies</goal>
</goals>
<configuration>
<outputDirectory>${dir.javaLibs}</outputDirectory>
<!-- new configuration entry below-->
<stripVersion>true</stripVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>