Skip to content

Commit

Permalink
Bump more deps.
Browse files Browse the repository at this point in the history
This is *almost* everything surfaced by a command like the one I used for some of our libraries, as in CL 348090041:

```
( for F in $(find -name pom.xml); do ( mvn org.codehaus.mojo:versions-maven-plugin:2.8.1:update-properties org.codehaus.mojo:versions-maven-plugin:2.8.1:use-latest-releases -f $F -DgenerateBackupPoms=false ); done )
```

Note that this covers *dependencies* but not *plugins*.

Note also that I had to revert some updates because of breakages:

- EasyMock
- Hamcrest
- test-parameter-injector because it transitively updated protobuf
- conceivably other things that I've forgotten

Fixes #2901

COPYBARA_INTEGRATE_REVIEW=#2901 from cpovirk:moredeps a111ca1
PiperOrigin-RevId: 424082806
  • Loading branch information
cpovirk authored and Error Prone Team committed Jan 25, 2022
1 parent 048a664 commit f6a508f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion check_api/pom.xml
Expand Up @@ -86,7 +86,7 @@
<!-- BSD New (3 clause) -->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.3</version>
<version>2.2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
10 changes: 5 additions & 5 deletions core/pom.xml
Expand Up @@ -172,28 +172,28 @@
<!-- Apache 2.0 -->
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>5.0.1</version>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Apache 2.0 -->
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-assistedinject</artifactId>
<version>5.0.1</version>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
<!-- Apache 2.0 -->
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-servlet</artifactId>
<version>5.0.1</version>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<!-- Apache 2.0 -->
<dependency>
<groupId>com.google.inject.extensions</groupId>
<artifactId>guice-testlib</artifactId>
<version>5.0.1</version>
<version>5.1.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down Expand Up @@ -290,7 +290,7 @@
<!-- Apache 2.0 -->
<groupId>io.netty</groupId>
<artifactId>netty-all</artifactId>
<version>4.1.73.Final</version>
<version>5.0.0.Alpha2</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down

0 comments on commit f6a508f

Please sign in to comment.