這篇文章給大家介紹利用maven怎么動(dòng)態(tài)修改版本號(hào),內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
創(chuàng)新互聯(lián)公司-專業(yè)網(wǎng)站定制、快速模板網(wǎng)站建設(shè)、高性價(jià)比五蓮網(wǎng)站開發(fā)、企業(yè)建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式五蓮網(wǎng)站制作公司更省心,省錢,快速模板網(wǎng)站建設(shè)找我們,業(yè)務(wù)覆蓋五蓮地區(qū)。費(fèi)用合理售后完善,十載實(shí)體公司更值得信賴。注:env.project.version為自定參數(shù)變量,env為dev或者test
1、在maven項(xiàng)目的父級(jí)pom設(shè)置變量,形如下
<groupId>org.example</groupId> <artifactId>demo-parent</artifactId> <packaging>pom</packaging> <version>${env.project.version}</version> <properties> <env.project.version>1.0-SNAPSHOT</env.project.version> </properties>
2、修改其子模塊pom
<parent> <artifactId>demo-parent</artifactId> <groupId>org.example</groupId> <version>${env.project.version}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>module-biz</artifactId>
<parent> <artifactId>demo-parent</artifactId> <groupId>org.example</groupId> <version>${env.project.version}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>module-api</artifactId>
3、執(zhí)行如下命令
mvn clean package -Denv.project.version=1.0-dev -DskipTests
如果要打包發(fā)布到私有倉庫,則執(zhí)行
mvn clean deploy-Denv.project.version=1.0-dev -DskipTests
4、驗(yàn)證
從截圖,可以看出達(dá)到預(yù)期的效果
1、在maven項(xiàng)目的父級(jí)pom設(shè)置變量,并添加profile,形如下
<properties> <env.project.version>1.0-SNAPSHOT</env.project.version> </properties> <profiles> <profile> <id>dev</id> <properties> <env.project.version>1.0-dev</env.project.version> </properties> <activation> <activeByDefault>true</activeByDefault> </activation> </profile> <profile> <id>test</id> <properties> <env.project.version>1.0-test</env.project.version> </properties> </profile> </profiles>
2、修改其子模塊pom
<parent> <artifactId>demo-parent</artifactId> <groupId>org.example</groupId> <version>${env.project.version}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>module-biz</artifactId>
<parent> <artifactId>demo-parent</artifactId> <groupId>org.example</groupId> <version>${env.project.version}</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>module-api</artifactId>
3、執(zhí)行如下命令
mvn clean package -Ptest -DskipTests
如果要打包發(fā)布到私有倉庫,則執(zhí)行
mvn clean deploy -Ptest -DskipTests
注:不指定-P默認(rèn)為dev
4、驗(yàn)證
從截圖,可以看出達(dá)到預(yù)期的效果
注:使用該命令,項(xiàng)目無需做任何變動(dòng)。
直接執(zhí)行命令
mvn versions:set -DnewVersion=1.0-dev
如果要發(fā)布到私倉,此時(shí)要分兩次命令執(zhí)行,命令如下
mvn versions:set -DnewVersion=1.0-dev mvn clean deploy -DskipTests
此時(shí)查看idea,會(huì)發(fā)現(xiàn)
項(xiàng)目版本號(hào)已經(jīng)發(fā)生改變,且產(chǎn)生一個(gè)pom.xml.versionsBackup文件,這個(gè)文件是用來回退版本用的,其內(nèi)容如下
如果確認(rèn)沒問題,則可以執(zhí)行你本來要操作的步驟,比如打包或者發(fā)布,形如下命令
mvn clean package/deploy -DskipTests
從截圖,可以看出達(dá)到預(yù)期的效果
如果有問題想回退版本,則執(zhí)行
mvn versions:revert
進(jìn)行回退。不過能成功執(zhí)行該步驟的前提是沒有執(zhí)行
mvn versions:commit
且存在pom.xml.versionsBackup文件文件
如果不想產(chǎn)生pom.xml.versionsBackup文件,則可以在父pom配置如下插件
<build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>versions-maven-plugin</artifactId> <version>2.8.1</version> <configuration> <generateBackupPoms>false</generateBackupPoms> </configuration> </plugin> </plugins> </build>
指定generateBackupPoms為false
參數(shù)介紹
關(guān)于利用maven怎么動(dòng)態(tài)修改版本號(hào)就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。
本文題目:利用maven怎么動(dòng)態(tài)修改版本號(hào)-創(chuàng)新互聯(lián)
文章轉(zhuǎn)載:http://jinyejixie.com/article6/pecog.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)站設(shè)計(jì)、小程序開發(fā)、軟件開發(fā)、外貿(mào)建站、虛擬主機(jī)、自適應(yīng)網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容