1

在我们的 pom.xml 中,我需要将父项目的版本设置为环境变量:

例子:

   <parent>
     <groupId>edu.university.se.se_parent_project</groupId>
     <artifactId>SE_ParentProject</artifactId>
     <version>${parent.version}</version>  
     <relativePath>../SE_ParentProject/pom.xml</relativePath>
   </parent>

我怎么做?

使用 ${parent.version} 给我这个错误: [错误] 不可解析的父 POM:无法从/到中央传输工件 edu.university.se.se_parent_project:SE_ParentProject:pom:${parent.version}

4

1 回答 1

0

替换${parent.version}${env.PARENT_VERSION}并将此环境变量添加到您的操作系统

PARENT_VERSION=1.0.0-SNAPSHOT
于 2013-04-19T21:28:20.727 回答