diff options
Diffstat (limited to 'plugins/restconf-client/provider/pom.xml')
-rwxr-xr-x | plugins/restconf-client/provider/pom.xml | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/plugins/restconf-client/provider/pom.xml b/plugins/restconf-client/provider/pom.xml index 244fd5c8b..09e8f43fa 100755 --- a/plugins/restconf-client/provider/pom.xml +++ b/plugins/restconf-client/provider/pom.xml @@ -5,7 +5,7 @@ <parent> <groupId>org.onap.ccsdk.parent</groupId> <artifactId>binding-parent</artifactId> - <version>2.5.3</version> + <version>2.5.4</version> </parent> <groupId>org.onap.ccsdk.sli.plugins</groupId> @@ -15,6 +15,10 @@ <name>ccsdk-sli-plugins :: ${project.artifactId}</name> + <properties> + <jaxb-api.version>2.3.3</jaxb-api.version> + </properties> + <dependencyManagement> <dependencies> <dependency> @@ -27,7 +31,7 @@ <dependency> <groupId>org.glassfish.jersey</groupId> <artifactId>jersey-bom</artifactId> - <version>2.27</version> + <version>2.37</version> <type>pom</type> <scope>import</scope> </dependency> @@ -97,8 +101,8 @@ </dependency> <dependency> <groupId>org.opendaylight.netconf</groupId> - <artifactId>restconf-nb-rfc8040</artifactId> - <scope>provided</scope> + <artifactId>restconf-nb</artifactId> + <version>4.0.4</version> <exclusions> <exclusion> <groupId>javax.xml</groupId> @@ -116,6 +120,12 @@ <artifactId>org.osgi.core</artifactId> <scope>provided</scope> </dependency> + <dependency> + <groupId>org.glassfish.jaxb</groupId> + <artifactId>jaxb-runtime</artifactId> + <version>${jaxb-api.version}</version> + </dependency> + <!-- For test --> <dependency> |