Skip to content

Commit

Permalink
Update Groovy versions (netty#11800)
Browse files Browse the repository at this point in the history
Motivation:
The old Groovy versions are running into compatibility issues with the latest JDK snapshots.

Modification:
Update the groovy maven plugin and its groovy dependency to the latest versions.
It looks like groovy-all is now a pom-dependency, so we switch to just groovy since we don't need what's in -all beyond that.

Result:
We now build on the latest JDK snapshots.
  • Loading branch information
chrisvest authored and laosijikaichele committed Dec 16, 2021
1 parent 7d20dea commit 61862f1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions common/pom.xml
Expand Up @@ -162,12 +162,12 @@
<plugin>
<groupId>org.codehaus.gmaven</groupId>
<artifactId>groovy-maven-plugin</artifactId>
<version>2.0</version>
<version>2.1.1</version>
<dependencies>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-all</artifactId>
<version>2.4.8</version>
<artifactId>groovy</artifactId>
<version>3.0.9</version>
</dependency>
<dependency>
<groupId>ant</groupId>
Expand Down

0 comments on commit 61862f1

Please sign in to comment.