groovy/GMavenPlus
### [`v1.11.0`](https://togithub.com/groovy/GMavenPlus/releases/1.11.0)
[Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.10.1...1.11.0)
#### Bugs
None
#### Enhancements
- Change JDK compatibility check to also account for Java 16.
- Some tweaks for Groovy 4 (most notably, invokedynamic is enabled by default for Groovy 4 and cannot be disabled).
- New parameter (`attachGroovyDocAnnotation`) to enable attaching GroovyDoc annotation.
- New parameter (`parallelParsing`) to enable parallel parsing (enabled by default with Groovy 4).
- Remove `previewFeatures` parameter from stub generation goals, since it's not used there.
#### Potentially breaking changes
- If you were using the `previewFeatures` parameter without also including a compilation goal that would make that config valid, the build will fail because it's no longer a valid parameter. The fix would be to move that configuration to the appropriate execution(s).
#### Notes
None
### [`v1.10.1`](https://togithub.com/groovy/GMavenPlus/releases/1.10.1)
[Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.10.0...1.10.1)
#### Bugs
None
#### Enhancements
- Ability to override classes used to generate GroovyDoc ([#91](https://togithub.com/groovy/GMavenPlus/issues/91))
- Ability to override GStringTemplates used for GroovyDoc ([#105](https://togithub.com/groovy/GMavenPlus/issues/105))
- Ability to bind overridden properties (by binding project properties and/or session user properties) ([#72](https://togithub.com/groovy/GMavenPlus/issues/72))
- Ability to load a script when launching GroovyConsole ([#165](https://togithub.com/groovy/GMavenPlus/issues/165))
#### Potentially breaking changes
None
#### Notes
None
### [`v1.10.0`](https://togithub.com/groovy/GMavenPlus/releases/1.10.0)
[Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.9.1...1.10.0)
#### Bugs
None
#### Enhancements
- Change default GroovyDoc jar artifact type to javadoc, so its extension gets set to "jar" by the artifact handler instead of "groovydoc" by the default handler logic which uses the type for the extension in the case of unknown types ([#151](https://togithub.com/groovy/GMavenPlus/issues/151)).
#### Potentially breaking changes
- GroovyDoc jars and test GroovyDoc jars will now be of type "javadoc" and have extension "jar". Rather than type and extension "groovydoc". If you do not wish to transition to this new behavior, set the new `artifactType` or `testArtifactType` property to "groovydoc" to revert to the previous behavior.
#### Notes
- While the artifact type of GroovyDoc jars has changed, the Maven classifier has not. It remains "groovydoc", and you can still override that, just as before.
### [`v1.9.1`](https://togithub.com/groovy/GMavenPlus/releases/1.9.1)
[Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.9.0...1.9.1)
#### Bugs
None
#### Enhancements
- Add a property to skip script execution ([#162](https://togithub.com/groovy/GMavenPlus/issues/162))
#### Potentially breaking changes
None
#### Notes
None
### [`v1.9.0`](https://togithub.com/groovy/GMavenPlus/releases/1.9.0)
[Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.8.1...1.9.0)
#### Bugs
None
#### Enhancements
- Support for Java 14 ([#152](https://togithub.com/groovy/GMavenPlus/issues/152)).
- Support for Java 15 ([#153](https://togithub.com/groovy/GMavenPlus/issues/153)).
- Add `skipBytecodeCheck` property and parameter, so if a Java version comes out the plugin doesn't recognize, you can use it without having to wait for an update.
- Use _groovy.ant.AntBuilder_ instead of _groovy.util.AntBuilder_ (if available).
#### Potentially breaking changes
- `maven.groovydoc.skip` property was renamed to `skipGroovydoc` so it matches the pattern of the other properties and won't seem to imply it's a property for a standard Maven plugin.
- Using _groovy.ant.AntBuilder_ instead of _groovy.util.AntBuilder_ (when available on classpath).
- Bundling Ant _1.10.7_ instead of _1.10.5_.
- Bundling Ivy _2.5.0_ instead of _2.4.0_.
#### Notes
- Now officially requires Java 7 instead of 6. This is not a breaking change, however, since this was actually already required because of plexus-classworlds. This just wasn't discovered until an enforcer rule was added to check bytecode versions of dependencies.
Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
1.8.1
->1.11.0
Release Notes
groovy/GMavenPlus
### [`v1.11.0`](https://togithub.com/groovy/GMavenPlus/releases/1.11.0) [Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.10.1...1.11.0) #### Bugs None #### Enhancements - Change JDK compatibility check to also account for Java 16. - Some tweaks for Groovy 4 (most notably, invokedynamic is enabled by default for Groovy 4 and cannot be disabled). - New parameter (`attachGroovyDocAnnotation`) to enable attaching GroovyDoc annotation. - New parameter (`parallelParsing`) to enable parallel parsing (enabled by default with Groovy 4). - Remove `previewFeatures` parameter from stub generation goals, since it's not used there. #### Potentially breaking changes - If you were using the `previewFeatures` parameter without also including a compilation goal that would make that config valid, the build will fail because it's no longer a valid parameter. The fix would be to move that configuration to the appropriate execution(s). #### Notes None ### [`v1.10.1`](https://togithub.com/groovy/GMavenPlus/releases/1.10.1) [Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.10.0...1.10.1) #### Bugs None #### Enhancements - Ability to override classes used to generate GroovyDoc ([#91](https://togithub.com/groovy/GMavenPlus/issues/91)) - Ability to override GStringTemplates used for GroovyDoc ([#105](https://togithub.com/groovy/GMavenPlus/issues/105)) - Ability to bind overridden properties (by binding project properties and/or session user properties) ([#72](https://togithub.com/groovy/GMavenPlus/issues/72)) - Ability to load a script when launching GroovyConsole ([#165](https://togithub.com/groovy/GMavenPlus/issues/165)) #### Potentially breaking changes None #### Notes None ### [`v1.10.0`](https://togithub.com/groovy/GMavenPlus/releases/1.10.0) [Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.9.1...1.10.0) #### Bugs None #### Enhancements - Change default GroovyDoc jar artifact type to javadoc, so its extension gets set to "jar" by the artifact handler instead of "groovydoc" by the default handler logic which uses the type for the extension in the case of unknown types ([#151](https://togithub.com/groovy/GMavenPlus/issues/151)). #### Potentially breaking changes - GroovyDoc jars and test GroovyDoc jars will now be of type "javadoc" and have extension "jar". Rather than type and extension "groovydoc". If you do not wish to transition to this new behavior, set the new `artifactType` or `testArtifactType` property to "groovydoc" to revert to the previous behavior. #### Notes - While the artifact type of GroovyDoc jars has changed, the Maven classifier has not. It remains "groovydoc", and you can still override that, just as before. ### [`v1.9.1`](https://togithub.com/groovy/GMavenPlus/releases/1.9.1) [Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.9.0...1.9.1) #### Bugs None #### Enhancements - Add a property to skip script execution ([#162](https://togithub.com/groovy/GMavenPlus/issues/162)) #### Potentially breaking changes None #### Notes None ### [`v1.9.0`](https://togithub.com/groovy/GMavenPlus/releases/1.9.0) [Compare Source](https://togithub.com/groovy/GMavenPlus/compare/1.8.1...1.9.0) #### Bugs None #### Enhancements - Support for Java 14 ([#152](https://togithub.com/groovy/GMavenPlus/issues/152)). - Support for Java 15 ([#153](https://togithub.com/groovy/GMavenPlus/issues/153)). - Add `skipBytecodeCheck` property and parameter, so if a Java version comes out the plugin doesn't recognize, you can use it without having to wait for an update. - Use _groovy.ant.AntBuilder_ instead of _groovy.util.AntBuilder_ (if available). #### Potentially breaking changes - `maven.groovydoc.skip` property was renamed to `skipGroovydoc` so it matches the pattern of the other properties and won't seem to imply it's a property for a standard Maven plugin. - Using _groovy.ant.AntBuilder_ instead of _groovy.util.AntBuilder_ (when available on classpath). - Bundling Ant _1.10.7_ instead of _1.10.5_. - Bundling Ivy _2.5.0_ instead of _2.4.0_. #### Notes - Now officially requires Java 7 instead of 6. This is not a breaking change, however, since this was actually already required because of plexus-classworlds. This just wasn't discovered until an enforcer rule was added to check bytecode versions of dependencies.Renovate configuration
:date: Schedule: At any time (no schedule defined).
:vertical_traffic_light: Automerge: Disabled by config. Please merge this manually once you are satisfied.
:recycle: Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
:no_bell: Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by WhiteSource Renovate. View repository job log here.