我正在使用带有Maven构建模板的VSTS为Java api配置构建管道。如何配置特定于环境的配置(即Dev,QA,Staging ... app.properties)。
谢谢 吉里什
答案 0 :(得分:0)
您可以使用profiles
来构建和打包为特定环境配置的工件。有关详细信息,请参见Building For Different Environments with Maven 2。
一旦创建了构建定义,我们将配置Maven任务以提供到pom.xml
的路径,以便构建定义可以使用pom.xml
来编译源代码并创建一个包文件。
有关详细信息,请参阅Configuration of continuous build integration in VSTS。
另一个类似的线程供您参考:Using Maven for multiple deployment environment (production/development)