maven 版本发布添加上版本号
Posted Laze
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven 版本发布添加上版本号相关的知识,希望对你有一定的参考价值。
使用插件添加版本号
我使用的是spring boot - 2.0.3.RELEASE版本
pom中加入
<!-- 加入这个 就可以直接在配置文件中取到时间戳了,
注意: 由于${}方式会被maven处理。 如果你pom继承了spring-boot-starter-parent, Spring Boot已经将maven-resources-plugins默认的${}方式改为了@@方式,例如:@[email protected] --> <properties> <project.build.version>@[email protected]</project.build.version> </properties> <build> <finalName>${artifactId}_${timestamp}</finalName> <plugins> ..... <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.4</version> <configuration> <timestampFormat>yyyyMMddHHmmss</timestampFormat> </configuration> <executions> <execution> <goals> <goal>create-timestamp</goal> </goals> </execution> </executions> <inherited>false</inherited> </plugin> </plugins> ..... </build>
现在只需要在配置文件加入(用的的是.yml)
project: build: version: @[email protected]
如果是.properties文件
project.build.version= @[email protected]
以上是关于maven 版本发布添加上版本号的主要内容,如果未能解决你的问题,请参考以下文章
通过 Java 正则表达式提取 semver 版本字符串的片段
Oracle 数据库 - 使用UEStudio修改dmp文件版本号,解决imp命令恢复的数据库与dmp本地文件版本号不匹配导致的导入失败问题,“ORACLE error 12547”问题处理(代码片段