我的项目中有一些 pom 文件,结构如下
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>xparent</artifactId>
<groupId>y</groupId>
<version>2.0.0</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>someparent</artifactId>
<version>x.x.x-needs_change</version>
<packaging>pom</packaging>
<name>some name</name>
<description>some description</description>
<url>myurl</url>
<modules>
<module>mymodules</module>
</modules>
<properties>
<my.version>x.x.x-needs_change</my.version>
</properties>
<dependencies>
<dependency>
<groupId>hhhhh</groupId>
<artifactId>hhhhh</artifactId>
<version>x.x.x-should not change</version>
</dependency>
</dependencies>
</project>
我正在使用 sed 将当前版本作为输入并将其更改为给定的新版本。但我不想在依赖块中更改版本。我该怎么做呢?
我不想走 Maven 版本插件路线。我试过了,它不符合我的要求。
我更喜欢 sed / python 脚本。
谢谢