diff options
Diffstat (limited to 'infra/northbound/restconf/pom.xml')
-rw-r--r-- | infra/northbound/restconf/pom.xml | 20 |
1 files changed, 8 insertions, 12 deletions
diff --git a/infra/northbound/restconf/pom.xml b/infra/northbound/restconf/pom.xml index 7e873bc31..ee07c33ab 100644 --- a/infra/northbound/restconf/pom.xml +++ b/infra/northbound/restconf/pom.xml @@ -32,9 +32,10 @@ <name>${project.artifactId}</name> <properties> - <jersey.version>1.19.1</jersey.version> + <jersey.version>1.19.4</jersey.version> + <glassfish-jersey.version>2.25.1</glassfish-jersey.version> <servlet.version>3.1.0</servlet.version> - <jetty.version>9.3.11.v20160721</jetty.version> + <jetty.version>9.3.21.v20170918</jetty.version> <yang.modules.whitelist> ${project.basedir}/src/main/resources/honeycomb-minimal-resources/config/restconf-whitelist.xml </yang.modules.whitelist> @@ -96,19 +97,14 @@ <version>${jetty.version}</version> </dependency> <dependency> - <groupId>com.sun.jersey</groupId> + <groupId>org.glassfish.jersey.core</groupId> <artifactId>jersey-server</artifactId> - <version>${jersey.version}</version> + <version>${glassfish-jersey.version}</version> </dependency> <dependency> - <groupId>com.sun.jersey</groupId> - <artifactId>jersey-core</artifactId> - <version>${jersey.version}</version> - </dependency> - <dependency> - <groupId>com.sun.jersey</groupId> - <artifactId>jersey-servlet</artifactId> - <version>${jersey.version}</version> + <groupId>org.glassfish.jersey.containers</groupId> + <artifactId>jersey-container-servlet-core</artifactId> + <version>${glassfish-jersey.version}</version> </dependency> <!-- javax.annotation --> |