diff options
author | Michael Dürre <michael.duerre@highstreet-technologies.com> | 2020-08-19 10:55:45 +0200 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2020-08-19 19:12:37 +0000 |
commit | 22649c9f0a3d2a76cb213b43e5d66ebcb2431ee3 (patch) | |
tree | f523c2169a911d9fe07e7eadd95977aa780841be /aai-service/provider/pom.xml | |
parent | 0b7927aefa5496890adc8e9cecea4f53df2db528 (diff) |
fix for J11
add missing dependency in J11
Issue-ID: CCSDK-2668
Signed-off-by: Michael Dürre <michael.duerre@highstreet-technologies.com>
Change-Id: I5bbdb0638f1367b7e2e06ac173538089e772cba0
Diffstat (limited to 'aai-service/provider/pom.xml')
-rwxr-xr-x | aai-service/provider/pom.xml | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/aai-service/provider/pom.xml b/aai-service/provider/pom.xml index a46a243d5..cb0358e02 100755 --- a/aai-service/provider/pom.xml +++ b/aai-service/provider/pom.xml @@ -22,15 +22,15 @@ </properties> <dependencyManagement> - <dependencies> - <dependency> - <groupId>org.onap.ccsdk.sli.core</groupId> - <artifactId>sli-core-artifacts</artifactId> - <version>${ccsdk.sli.core.version}</version> - <type>pom</type> - <scope>import</scope> - </dependency> - </dependencies> + <dependencies> + <dependency> + <groupId>org.onap.ccsdk.sli.core</groupId> + <artifactId>sli-core-artifacts</artifactId> + <version>${ccsdk.sli.core.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> </dependencyManagement> <dependencies> <dependency> @@ -63,10 +63,10 @@ <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> - <dependency> - <groupId>javax.ws.rs</groupId> - <artifactId>javax.ws.rs-api</artifactId> - </dependency> + <dependency> + <groupId>javax.ws.rs</groupId> + <artifactId>javax.ws.rs-api</artifactId> + </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> @@ -101,6 +101,10 @@ <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> + <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> </dependencies> <build> |