diff options
author | liboNet <libo.zhu@intel.com> | 2019-04-03 15:50:50 +0800 |
---|---|---|
committer | liboNet <libo.zhu@intel.com> | 2019-04-03 15:50:50 +0800 |
commit | de2f1e42e37b975454af53aeb81a2ae2e7627e99 (patch) | |
tree | 8796f31fe70daa260b93cdbe31c3ce295f42eade /artifactbroker | |
parent | 41373a9619308bdbab6a31c02fe3d54e91ac6ee3 (diff) |
Fix the artifact parent issue
. the parent should point to org.onap.oparent:oparent:1.2.0
. the groupId for both should be set to org.onap.multicloud.framework
Change-Id: I5e821c8382b8f2297276a0ca508093fccd4c9620
Issue-ID: MULTICLOUD-514
Signed-off-by: liboNet <libo.zhu@intel.com>
Diffstat (limited to 'artifactbroker')
-rw-r--r-- | artifactbroker/pom.xml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/artifactbroker/pom.xml b/artifactbroker/pom.xml index 11d3903..1e0a1f7 100644 --- a/artifactbroker/pom.xml +++ b/artifactbroker/pom.xml @@ -15,12 +15,13 @@ <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <parent> - <groupId>org.onap.multicloud.framework</groupId> - <artifactId>multicloud-framework</artifactId> - <version>1.3.0-SNAPSHOT</version> - <relativePath /> + <groupId>org.onap.oparent</groupId> + <artifactId>oparent</artifactId> + <version>1.2.0</version> + <relativePath>../oparent</relativePath> </parent> <modelVersion>4.0.0</modelVersion> + <groupId>org.onap.multicloud.framework</groupId> <artifactId>multicloud-framework-artifactbroker</artifactId> <version>1.3.0-SNAPSHOT</version> <packaging>pom</packaging> |