Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
dbreheret committed May 18, 2021
1 parent 81ff125 commit be01c92
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions bom/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ THE SOFTWARE.

<properties>
<guavaVersion>30.1.1-jre</guavaVersion>
<!-- when updating the version of guava, check that forcing of errorprone is still needed.
Guava comes with error_prone_annotations version 2.5.1,
force it for the other plugins that use version 2.4.0 -->
<errorproneVersion>2.5.1</errorproneVersion>
<slf4jVersion>1.7.30</slf4jVersion>
<stapler.version>1532.vfcf95addcb5f</stapler.version>
<groovy.version>2.4.12</groovy.version>
Expand Down Expand Up @@ -92,7 +96,12 @@ THE SOFTWARE.
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>11.0.1</version>
<version>${guavaVersion}</version>
</dependency>
<dependency>
<groupId>com.google.errorprone</groupId>
<artifactId>error_prone_annotations</artifactId>
<version>${errorproneVersion}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
Expand Down Expand Up @@ -150,7 +159,7 @@ THE SOFTWARE.
<!-- the old artifactID for the servlet API -->
<artifactId>servlet-api</artifactId>
<version>[0]</version>
<!--
<!--
"[0]" is a range that must be exactly 0
this is different to "0" which is hint to use version 0.
therefore unless anyone else uses ranges (they should not) this version will always win
Expand Down

0 comments on commit be01c92

Please sign in to comment.