替换 Maven 中的版本

Posted

技术标签:

【中文标题】替换 Maven 中的版本【英文标题】:replace version in maven 【发布时间】:2020-09-17 20:44:41 【问题描述】:

我的 pom.xml 中有这段代码:

<build>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-assembly-plugin</artifactId>
                    <configuration>
                        <descriptors>
                            <descriptor>assembly.xml</descriptor>
                        </descriptors>
                        <appendAssemblyId>false</appendAssemblyId>
                        <finalName>bonanza-version</finalName>
                    </configuration>
                    <executions>
                        <execution>
                            <id>make-assembly</id>
                            <phase>package</phase>
                            <goals>
                                <goal>single</goal>
                            </goals>
                        </execution>
                    </executions>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>

但 version 不会被替换为项目的版本

 <groupId>com.bonanza</groupId>
    <artifactId>bonanza-lines</artifactId>
    <version>2.0.0</version>

【问题讨论】:

【参考方案1】:

我觉得应该是$project.version

【讨论】:

以上是关于替换 Maven 中的版本的主要内容,如果未能解决你的问题,请参考以下文章

替换 Maven 3 中的丛组件

maven项目动态替换配置中的值

如何用 Maven 属性替换 web.xml 中的值?

替换 JavaScript 文件中的 Maven Archetype 属性

使用maven替换项目依赖中的字节码

maven 打包时动态替换properties资源文件中的配置值