Move guava to a non-test dependency, due to implicit dependencies that were previous satisfied by copy inside Jorje JAR.

Change-Id: Iebbc77d4f1ece8ec4712f749356d877858c14d21
This commit is contained in:
Aaron Hurst
2022-12-02 07:31:49 +00:00
parent 1a5c57155e
commit 626aec595b

14
pom.xml
View File

@ -768,6 +768,12 @@
<artifactId>gson</artifactId>
<version>2.8.9</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!-- using 31.0.1-android flavor instead of 31.0.1-jre, so that we are compatible with java7 -->
<version>31.0.1-android</version>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
@ -803,14 +809,6 @@
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<!-- using 31.0.1-android flavor instead of 31.0.1-jre, so that we are compatible with java7 -->
<version>31.0.1-android</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest</artifactId>