diff options
author | Singal, Kapil (ks220y) <ks220y@att.com> | 2021-06-09 12:14:54 -0400 |
---|---|---|
committer | KAPIL SINGAL <ks220y@att.com> | 2021-06-14 14:03:25 +0000 |
commit | 94a7c372094fb6c8f342dfd04984a34c975eb849 (patch) | |
tree | 59374117a3786da069a28daa1488cf6dd73f52f0 /dependencies/pom.xml | |
parent | fff64f89ef68f9f6a31d462507495115b81c04f9 (diff) |
Making changes as per SILICON ODL
Adding few dependencies and refactoring sli versioning
Issue-ID: CCSDK-3331
Signed-off-by: Singal, Kapil (ks220y) <ks220y@att.com>
Change-Id: I9678e4b4401791a98499ab3c39ef5b24e404aea8
Diffstat (limited to 'dependencies/pom.xml')
-rwxr-xr-x | dependencies/pom.xml | 44 |
1 files changed, 29 insertions, 15 deletions
diff --git a/dependencies/pom.xml b/dependencies/pom.xml index 190559a1..5d02b381 100755 --- a/dependencies/pom.xml +++ b/dependencies/pom.xml @@ -8,9 +8,7 @@ <version>1.2.0-SNAPSHOT</version> </parent> - <groupId>org.onap.ccsdk.distribution</groupId> <artifactId>dependencies</artifactId> - <version>1.2.0-SNAPSHOT</version> <packaging>pom</packaging> <name>ccsdk-distribution :: ${project.artifactId}</name> @@ -22,16 +20,9 @@ <dependencyManagement> <dependencies> <dependency> - <groupId>org.glassfish.jersey</groupId> - <artifactId>jersey-bom</artifactId> - <version>2.27</version> - <scope>import</scope> - <type>pom</type> - </dependency> - <dependency> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>dependencies-odl-bom</artifactId> - <version>2.1.1</version> + <version>2.2.0-SNAPSHOT</version> <scope>import</scope> <type>pom</type> </dependency> @@ -43,7 +34,6 @@ </dependencies> </dependencyManagement> - <dependencies> <dependency> <groupId>ch.qos.logback</groupId> @@ -78,10 +68,6 @@ <artifactId>json-path</artifactId> </dependency> <dependency> - <groupId>javax.xml.bind</groupId> - <artifactId>jaxb-api</artifactId> - </dependency> - <dependency> <groupId>com.sun.xml.bind</groupId> <artifactId>jaxb-core</artifactId> </dependency> @@ -90,6 +76,20 @@ <artifactId>jaxb-impl</artifactId> </dependency> <dependency> + <groupId>javax.xml.bind</groupId> + <artifactId>jaxb-api</artifactId> + </dependency> + <dependency> + <groupId>jakarta.activation</groupId> + <artifactId>jakarta.activation-api</artifactId> + </dependency> + <!-- Below provides javax.jws --> + <dependency> + <groupId>com.sun.xml.ws</groupId> + <artifactId>jaxws-ri</artifactId> + <type>pom</type> + </dependency> + <dependency> <groupId>javax</groupId> <artifactId>javaee-api</artifactId> </dependency> @@ -155,6 +155,10 @@ <artifactId>logging-filter-base</artifactId> </dependency> <dependency> + <groupId>org.onap.logging-analytics</groupId> + <artifactId>logging-slf4j</artifactId> + </dependency> + <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> </dependency> @@ -179,6 +183,16 @@ <artifactId>org.apache.servicemix.specs.jaxws-api-2.3</artifactId> <version>2.3_1</version> </dependency> + <!-- Below is required by com.google.guava : guava : jar : 28.2-jre --> + <dependency> + <groupId>com.google.guava</groupId> + <artifactId>listenablefuture</artifactId> + </dependency> + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + <version>2.3.4</version> + </dependency> </dependencies> <build> |