好用请点赞收藏一波!
转发请带上作者名@LLLua和原文地址,谢谢!
Maven环境隔离可以轻易分环境编译,打包,部署,避免了人为的错误。
1.pom.xml中增加build节点。
2.pom.xml中增加profiles节点。
其中activeByDefault标签代表如果没有指定环境,这个环境便是默认的。
<profiles> <profile> <id>dev</id> <activation> <activeByDefault>true</activeByDefault> </activation> <properties> <deploy.type>dev</deploy.type> </properties> </profile> <profile> <id>beta</id> <properties> <deploy.type>beta</deploy.type> </properties> </profile> <profile> <id>prod</id> <properties> <deploy.type>prod</deploy.type> </properties> </profile> </profiles>
maven环境隔离编译打包命令
参数是-P环境标识,上例对应的就是-Pdev,-Pbeta,-Pprod
mvn clean package -Dmaven.test.skip=true -Pdev
mvn clean package -Dmaven.test.skip=true -Pbeta
mvn clean package -Dmaven.test.skip=true -Pprod
本文介绍了如何使用Maven进行环境隔离配置,通过在pom.xml文件中定义不同的profiles来实现dev、beta及prod等环境的轻松切换。文章提供了具体的配置示例,并说明了如何通过命令行参数-P来指定编译环境。
659

被折叠的 条评论
为什么被折叠?



