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 /northbound | |
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 'northbound')
-rwxr-xr-x | northbound/artifacts/pom.xml | 3 | ||||
-rwxr-xr-x | northbound/dmaap-listener/pom.xml | 4 |
2 files changed, 6 insertions, 1 deletions
diff --git a/northbound/artifacts/pom.xml b/northbound/artifacts/pom.xml index c0657b8b3..509528ad7 100755 --- a/northbound/artifacts/pom.xml +++ b/northbound/artifacts/pom.xml @@ -4,8 +4,9 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> - <artifactId>parent</artifactId> + <artifactId>odlparent-lite</artifactId> <version>2.1.1</version> + <relativePath/> </parent> <groupId>org.onap.ccsdk.sli.northbound</groupId> diff --git a/northbound/dmaap-listener/pom.xml b/northbound/dmaap-listener/pom.xml index ac671c662..959645344 100755 --- a/northbound/dmaap-listener/pom.xml +++ b/northbound/dmaap-listener/pom.xml @@ -75,6 +75,10 @@ <artifactId>velocity-engine-core</artifactId> </dependency> <dependency> + <groupId>org.glassfish.jersey.inject</groupId> + <artifactId>jersey-hk2</artifactId> + </dependency> + <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> |