@@ -31,9 +31,9 @@ To use the plugin, include in your build script.
3131plugins {
3232 // Option A: When your root project has a SourceSet
3333 // e.g. the root project is applying the java/groovy/kotlin plugin as well
34- id "com.github.andygoossens.modernizer" version "1.11 .0"
34+ id "com.github.andygoossens.modernizer" version "1.12 .0"
3535 // Option B: When your root project does not have a SourceSet
36- id "com.github.andygoossens.modernizer" version "1.11 .0" apply false
36+ id "com.github.andygoossens.modernizer" version "1.12 .0" apply false
3737}
3838
3939repositories {
@@ -72,9 +72,9 @@ subprojects {
7272plugins {
7373 // Option A: When your root project has a SourceSet
7474 // e.g., the root project is applying the java/groovy/kotlin plugin as well
75- id(" com.github.andygoossens.modernizer" ) version " 1.11 .0"
75+ id(" com.github.andygoossens.modernizer" ) version " 1.12 .0"
7676 // Option B: When your root project does not have a SourceSet
77- id(" com.github.andygoossens.modernizer" ) version " 1.11 .0" apply false
77+ id(" com.github.andygoossens.modernizer" ) version " 1.12 .0" apply false
7878}
7979
8080repositories {
@@ -299,7 +299,7 @@ public class Example {
299299Add the following dependency to your Gradle build script:
300300
301301``` groovy
302- implementation "org.gaul:modernizer-maven-annotations:3.1 .0"
302+ implementation "org.gaul:modernizer-maven-annotations:3.2 .0"
303303```
304304
305305## Version comparison
@@ -321,6 +321,7 @@ The table below describes how they relate to each other.
321321| 1.9.x | 2.7.0 |
322322| 1.10.0 | 2.9.0 |
323323| 1.11.0 | 3.1.0 |
324+ | 1.12.0 | 3.2.0 |
324325
325326Note that you can override the default version of Modernizer Maven Plugin which will be used.
326327Specify the desired version in the ` toolVersion ` extension property.
@@ -346,7 +347,7 @@ The Gradle plugin will then pick up the requested version and, if the API is sti
346347
347348``` groovy
348349modernizer {
349- toolVersion = "3.1 .0"
350+ toolVersion = "3.2 .0"
350351}
351352```
352353
0 commit comments