这篇文章将为大家详细讲解有关如何利用Maven添加工程版本信息及时间戳,小编觉得挺实用的,因此分享给大家做个参考,希望大家阅读完这篇文章后可以有所收获。
Maven添加工程版本信息及时间戳
定义全局变量
pom文件中添加
<properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.build.number>1.0.5</maven.build.number> <maven.build.timestamp.format>yyyy-MM-dd HH:mm:ss</maven.build.timestamp.format> </properties>
给MANIFEST.MF文件添加版本及时间戳信息
pom文件中添加
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-war-plugin</artifactId> <configuration> <!-- 如果是jar包值为true,如果是war包值为false --> <archiveClasses>false</archiveClasses> <archive> <manifest> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> </manifest> <manifestEntries> <Build-Number>${maven.build.number}</Build-Number> <Timestamp>${maven.build.timestamp}</Timestamp> </manifestEntries> </archive> </configuration> </plugin>
Maven版本发布添加上时间戳
使用插件添加时间戳
我使用的是spring boot - 2.0.3.RELEASE版本
pom中加入
<!--加入这个 就可以直接在配置文件中取到时间戳了,注意:由于${}方式会被maven处理。如果你pom继承了spring-boot-starter-parent,Spring Boot已经将maven-resources-plugins默认的${}方式改为了@@方式,例如:@timestamp@--><properties> <project.build.version>@timestamp@</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: @project.build.version@<br><br>如果是.properties文件project.build.version= @project.build.version@
关于“如何利用Maven添加工程版本信息及时间戳”这篇文章就分享到这里了,希望以上内容可以对大家有一定的帮助,使各位可以学到更多知识,如果觉得文章不错,请把它分享出去让更多的人看到。