diff options
author | andre.schmid <andre.schmid@est.tech> | 2021-02-25 18:00:48 +0000 |
---|---|---|
committer | Christophe Closset <christophe.closset@intl.att.com> | 2021-02-26 17:05:37 +0000 |
commit | f72d59b269c721a13e51f572a10324ce0add186f (patch) | |
tree | 9dc78c3c52ac624ea910234ebbea307805479092 /integration-tests/pom.xml | |
parent | 43b49025fd8f2cdcbbcaf436fb1c5dfabbaa4855 (diff) |
Update guava version
Change-Id: I5b233162a180a29d9c7ba79fb0fa480f8f0e0da9
Issue-ID: SDC-3491
Signed-off-by: andre.schmid <andre.schmid@est.tech>
Diffstat (limited to 'integration-tests/pom.xml')
-rw-r--r-- | integration-tests/pom.xml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index 6d87dd937e..449a86bc51 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -70,16 +70,22 @@ limitations under the License. <scope>test</scope> </dependency> <dependency> - <groupId>com.google.guava</groupId> - <artifactId>guava</artifactId> - <version>25.0-jre</version> - <scope>compile</scope> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest</artifactId> + <version>${hamcrest.version}</version> + <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> <scope>test</scope> + <exclusions> + <exclusion> + <groupId>org.hamcrest</groupId> + <artifactId>hamcrest-core</artifactId> + </exclusion> + </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> @@ -247,12 +253,6 @@ limitations under the License. <scope>test</scope> </dependency> <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest</artifactId> - <version>${hamcrest.version}</version> - <scope>test</scope> - </dependency> - <dependency> <groupId>commons-net</groupId> <artifactId>commons-net</artifactId> <version>3.3</version> |