[KEYCLOAK-6002] - keycloak-test-helper should use the same resteasy dependency version as the parent

This commit is contained in:
Bruno Oliveira 2017-12-08 09:38:24 -02:00 committed by Stian Thorgersen
parent a60fdcedcd
commit 79c4d3e7cf

View file

@ -13,9 +13,6 @@
<name>keycloak-test-helper</name> <name>keycloak-test-helper</name>
<description>Helper library to test application using Keycloak.</description> <description>Helper library to test application using Keycloak.</description>
<packaging>jar</packaging> <packaging>jar</packaging>
<properties>
<resteasy.client.version>3.0.24.Final</resteasy.client.version>
</properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>org.keycloak</groupId> <groupId>org.keycloak</groupId>
@ -28,12 +25,12 @@
<dependency> <dependency>
<groupId>org.jboss.resteasy</groupId> <groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-client</artifactId> <artifactId>resteasy-client</artifactId>
<version>${resteasy.client.version}</version> <version>${resteasy.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.jboss.resteasy</groupId> <groupId>org.jboss.resteasy</groupId>
<artifactId>resteasy-jackson2-provider</artifactId> <artifactId>resteasy-jackson2-provider</artifactId>
<version>${resteasy.client.version}</version> <version>${resteasy.version}</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.seleniumhq.selenium</groupId> <groupId>org.seleniumhq.selenium</groupId>