diff options
author | Jim Hahn <jrh3@att.com> | 2020-07-03 14:53:26 -0400 |
---|---|---|
committer | Jim Hahn <jrh3@att.com> | 2020-07-03 14:59:51 -0400 |
commit | b027b07c810fbdfa1b11959580fa38f87059d3c4 (patch) | |
tree | a52661e49f5d5cc75d2d75bbcbf197d62addc0db /model | |
parent | ffd7bb269fd65df1b976f416a0502d665bd3aa61 (diff) |
Fix openpojo breakage in policy-distribution
Removing openmojo from the common/utils pom caused the policy-distribution
build to break. Added openpojo to the appropriate pom in policy-distribution.
Issue-ID: POLICY-2387
Change-Id: I942480828e31340aa1ca90a71bb2c197eaaf8f4c
Signed-off-by: Jim Hahn <jrh3@att.com>
Diffstat (limited to 'model')
-rw-r--r-- | model/pom.xml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/model/pom.xml b/model/pom.xml index 215433f6..e09c49b8 100644 --- a/model/pom.xml +++ b/model/pom.xml @@ -1,6 +1,7 @@ <!-- ============LICENSE_START======================================================= Copyright (C) 2018 Ericsson. All rights reserved. + Modifications Copyright (C) 2020 AT&T Intellectual Property. All rights reserved. ================================================================================ Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -31,9 +32,9 @@ <dependencies> <dependency> - <groupId>org.onap.policy.common</groupId> - <artifactId>utils</artifactId> - <version>${policy.common.version}</version> + <groupId>com.openpojo</groupId> + <artifactId>openpojo</artifactId> + <scope>test</scope> </dependency> <dependency> <groupId>org.onap.policy.models</groupId> |