Skip to content

Commit

Permalink
Bump deps.
Browse files Browse the repository at this point in the history
Prompted by #4242

(`mvn org.codehaus.mojo:versions-maven-plugin:2.16.2:{update-properties,use-latest-releases} -DgenerateBackupPoms=false -f third_party/java_src/error_prone/project/pom.xml -Dexcludes=org.hamcrest:hamcrest-core,org.hamcrest:hamcrest-library,com.google.inject.extensions:guice-assistedinject,com.google.inject.extensions:guice-servlet,com.google.inject.extensions:guice-testlib`. Without the exclusions, I got test errors. The Hamcrest ones might be related to API changes? The Guice ones might be related to getting out of sync with `guice.version`, which the `mvn` command does not update?)

PiperOrigin-RevId: 596010863
  • Loading branch information
cpovirk authored and Error Prone Team committed Jan 5, 2024
1 parent db3e9ad commit 654b1d9
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion check_api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.jimfs</groupId>
<artifactId>jimfs</artifactId>
<version>1.2</version>
<version>1.3.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
18 changes: 9 additions & 9 deletions core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@
<!-- MIT -->
<groupId>org.pcollections</groupId>
<artifactId>pcollections</artifactId>
<version>3.1.4</version>
<version>4.0.1</version>
</dependency>
<dependency>
<!-- Apache 2.0 -->
Expand All @@ -84,7 +84,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.auto</groupId>
<artifactId>auto-common</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</dependency>
<dependency>
<!-- BSD New -->
Expand Down Expand Up @@ -137,7 +137,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.testparameterinjector</groupId>
<artifactId>test-parameter-injector</artifactId>
<version>1.1</version>
<version>1.14</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -255,7 +255,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.auto.factory</groupId>
<artifactId>auto-factory</artifactId>
<version>1.0.1</version>
<version>1.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -283,7 +283,7 @@
<!-- ICU License -->
<groupId>com.ibm.icu</groupId>
<artifactId>icu4j</artifactId>
<version>70.1</version>
<version>74.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -304,7 +304,7 @@
<!-- Apache 2.0 -->
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.13</version>
<version>2.12.5</version>
<scope>test</scope>
</dependency>

Expand All @@ -326,14 +326,14 @@
<!-- Apache 2.0 -->
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.22.0</version>
<version>3.25.1</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Apache 2.0 -->
<groupId>org.easymock</groupId>
<artifactId>easymock</artifactId>
<version>4.3</version>
<version>5.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -346,7 +346,7 @@
<dependency>
<groupId>org.threeten</groupId>
<artifactId>threeten-extra</artifactId>
<version>1.7.0</version>
<version>1.7.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
6 changes: 3 additions & 3 deletions docgen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
<version>2.0</version>
<version>2.2</version>
</dependency>
<dependency>
<groupId>junit</groupId>
Expand All @@ -111,12 +111,12 @@
<dependency>
<groupId>com.github.spullara.mustache.java</groupId>
<artifactId>compiler</artifactId>
<version>0.9.10</version>
<version>0.9.11</version>
</dependency>
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>2.10.1</version>
</dependency>
<dependency>
<groupId>com.google.truth</groupId>
Expand Down
2 changes: 1 addition & 1 deletion docgen_processor/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.9</version>
<version>2.10.1</version>
</dependency>
</dependencies>

Expand Down
4 changes: 2 additions & 2 deletions test_helpers/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.googlejavaformat</groupId>
<artifactId>google-java-format</artifactId>
<version>1.13.0</version>
<version>1.19.1</version>
</dependency>
<dependency>
<!-- Eclipse Public License 1.0 -->
Expand Down Expand Up @@ -130,7 +130,7 @@
<!-- Apache 2.0 -->
<groupId>com.google.jimfs</groupId>
<artifactId>jimfs</artifactId>
<version>1.2</version>
<version>1.3.0</version>
</dependency>
<dependency>
<!-- Apache 2.0 -->
Expand Down

0 comments on commit 654b1d9

Please sign in to comment.