您好,登錄后才能下訂單哦!
這篇文章主要介紹了maven配置文件pom如何增加變量取版本號(hào),具有一定借鑒價(jià)值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。
<properties> <spring.version>3.2.2.RELEASE</spring.version> </properties>
<dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> <version>${spring.version}</version> </dependency>
在應(yīng)用項(xiàng)目中,如果應(yīng)用程序需要獲取當(dāng)前程序的版本號(hào),可以讀取”/META-INF/maven/${groupId}/${artifactId}/pom.properties“,獲取maven生成的版本信息。
當(dāng)然前提用應(yīng)用程序在運(yùn)行時(shí)得知道自己的groupId和artifactId,否則無法定位路徑。
pom.properties內(nèi)容示例
#Created by Apache Maven .5.0 version=1.0.4-SNAPSHOT groupId=com.gitee.l0km artifactId=facelog-service
這種方法很簡單,但也有缺點(diǎn):
貌似這種方法只能獲取maven默認(rèn)定義${project.version},無法加入自定義的信息。
還有一個(gè)方案就是直接將版本信息寫入MANIFEST.MF。通過java.util.jar.Manifest來讀取解析MANIFEST.MF來獲取版本號(hào)。
如下增加buildnumber-maven-plugin插件,并給maven-jar-plugin插件指定寫入MANIFEST.MF的參數(shù)。
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.2</version> <executions> <execution> <goals> <goal>create</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>3.0.2</version> <configuration> <archive> <manifestEntries> <!-- 項(xiàng)目版本號(hào) --> <Project-Version>${project.version}</Project-Version> <!-- buildnumber插件提供的 SCM(git/svn等)版本號(hào) --> <Scm-Version>${buildNumber}</Scm-Version> <!-- 時(shí)間戳 --> <Timestamp>${maven.build.timestamp}</Timestamp> </manifestEntries> </archive> </configuration> </plugin>
前面兩種方案,都需要將應(yīng)用程序打成jar包才能讀取版本信息。
那么程序在開發(fā)調(diào)試的時(shí)候,并沒有生成pom.properties,和MANIFEST.MF,也就無法讀取版本信息了。
所以另一種思路就是用 template-maven-plugin插件讓maven自動(dòng)生成一個(gè)包含版本信息的代碼如Version.java。這樣任何時(shí)候,程序都能很方便的知道自己的版本號(hào)了。
模板
首先需要一個(gè)代碼模板Version.java,示例如下:
package net.gdface.facelog.service; public final class Version { /** project version */ public static final String VERSION = "${project.version}"; /** SCM(git) revision */ public static final String SCM_REVISION= "${buildNumber}"; /** SCM branch */ public static final String SCM_BRANCH = "${scmBranch}"; /** build timestamp */ public static final String TIMESTAMP ="${buildtimestamp}"; }
模板放在/src/main/java/java-templates/${package_of_template}/下
原本在模板文件中用maven內(nèi)置變量${maven.build.timestamp}做時(shí)間戳,實(shí)際運(yùn)行并沒有被正確替換,不知道原因。所以改為使用buildnumber-maven-plugin插件(goal create-timestamp)生成的時(shí)間戳${buildtimestamp}
插件
然后修改pom.xml增加 template-maven-plugin插件和buildnumber-maven-plugin插件
<plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>buildnumber-maven-plugin</artifactId> <version>1.4</version> <executions> <execution> <id>bn1</id> <goals> <!-- 創(chuàng)建${buildNumber} --> <goal>create</goal> </goals> </execution> <execution> <id>bn2</id> <goals> <!-- 創(chuàng)建時(shí)間戳${buildtimestamp} --> <goal>create-timestamp</goal> </goals> <configuration> <!-- 指定時(shí)間戳變量名 --> <timestampPropertyName>buildtimestamp</timestampPropertyName> <!-- 指定日期格式 --> <timestampFormat>yyyy-MM-dd HH:mm:ss</timestampFormat> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>templating-maven-plugin</artifactId> <version>1.0.0</version> <executions> <execution> <id>filter-src</id> <goals> <goal>filter-sources</goal> </goals> </execution> </executions> </plugin>
template-maven-plugin插件會(huì)將/src/main/java/java-templates/文件夾下的所有模板中的${xxx}占位符都用maven中同名的變量替換一遍,
生成的Version.java在${project.build.directory}/generated-sources/${package_of_template}下,并且該文件夾會(huì)自動(dòng)成為源碼文件夾加入編譯過程。
感謝你能夠認(rèn)真閱讀完這篇文章,希望小編分享的“maven配置文件pom如何增加變量取版本號(hào)”這篇文章對(duì)大家有幫助,同時(shí)也希望大家多多支持億速云,關(guān)注億速云行業(yè)資訊頻道,更多相關(guān)知識(shí)等著你來學(xué)習(xí)!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。