Skip to content

Commit a8966a3

Browse files
authoredAug 25, 2021
Replace Guava direct dependency to guava-agent (#23)
1 parent e86a1c0 commit a8966a3

File tree

1 file changed

+12
-6
lines changed

1 file changed

+12
-6
lines changed
 

‎pom.xml

+12-6
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<surefire-plugin.version>3.0.0-M5</surefire-plugin.version>
3333
<source-plugin.version>3.2.1</source-plugin.version>
3434
<javadoc-plugin.version>3.3.0</javadoc-plugin.version>
35-
<guava.version>30.1.1-android</guava.version>
35+
<guava-agent.version>30.1.1a</guava-agent.version>
3636
<gpg-plugin.version>3.0.1</gpg-plugin.version>
3737
<staging-plugin.version>1.6.8</staging-plugin.version>
3838
<release-plugin.version>3.0.0-M4</release-plugin.version>
@@ -71,9 +71,9 @@
7171
<version>${apache-derby.version}</version>
7272
</dependency>
7373
<dependency>
74-
<groupId>com.google.guava</groupId>
75-
<artifactId>guava</artifactId>
76-
<version>${guava.version}</version>
74+
<groupId>com.nordstrom.tools</groupId>
75+
<artifactId>guava-agent</artifactId>
76+
<version>${guava-agent.version}</version>
7777
</dependency>
7878
</dependencies>
7979
</dependencyManagement>
@@ -90,8 +90,8 @@
9090
<scope>test</scope>
9191
</dependency>
9292
<dependency>
93-
<groupId>com.google.guava</groupId>
94-
<artifactId>guava</artifactId>
93+
<groupId>com.nordstrom.tools</groupId>
94+
<artifactId>guava-agent</artifactId>
9595
</dependency>
9696
</dependencies>
9797

@@ -143,6 +143,12 @@
143143
<plugin>
144144
<groupId>org.apache.maven.plugins</groupId>
145145
<artifactId>maven-surefire-plugin</artifactId>
146+
<configuration>
147+
<jdkToolchain>
148+
<version>${maven.compiler.release}</version>
149+
<vendor>oracle</vendor>
150+
</jdkToolchain>
151+
</configuration>
146152
</plugin>
147153
<plugin>
148154
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)
Please sign in to comment.