diff options
author | Dan Timoney <dtimoney@att.com> | 2021-02-23 07:59:35 -0500 |
---|---|---|
committer | Dan Timoney <dtimoney@att.com> | 2021-02-23 07:59:35 -0500 |
commit | 70eefe655325271e167efba6394044145b28b772 (patch) | |
tree | 2bf7a036dd7657ac0dd4a0f8a388acf631f9ab5a /plugins | |
parent | 436041bf2585440da3eb986b6d39634e8316a759 (diff) |
Fix error in artifacts parent
The artifacts modules are using wrong parent pom, which is causing
compile issues in some local builds.
Issue-ID: CCSDK-3179
Signed-off-by: Dan Timoney <dtimoney@att.com>
Change-Id: Ie2b8a9ac662bf842cc1c7e268e6a53254f4b5463
Diffstat (limited to 'plugins')
-rwxr-xr-x | plugins/artifacts/pom.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/plugins/artifacts/pom.xml b/plugins/artifacts/pom.xml index b4c55f6d5..05d7d3e44 100755 --- a/plugins/artifacts/pom.xml +++ b/plugins/artifacts/pom.xml @@ -3,9 +3,10 @@ <modelVersion>4.0.0</modelVersion> <parent> - <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>parent</artifactId> - <version>2.1.1</version> + <groupId>org.onap.ccsdk.parent</groupId> + <artifactId>odlparent-lite</artifactId> + <version>2.1.1</version> + <relativePath/> </parent> <groupId>org.onap.ccsdk.sli.plugins</groupId> |