Bugs
- None
Enhancements
- Allow for invocation using only project classpath (#140). This is accomplished with
<includeClasspath>PLUGIN_ONLY</includeClasspath>
.
Potentially breaking changes
#140
If you were using useSharedClasspath
before, you will need to replace it with new values. In most cases, this would be
usedSharedClasspath | includeClasspath |
---|---|
true | PROJECT_AND_PLUGIN |
false | PROJECT_ONLY |
Another notable difference is that when using this new configuration parameter in compile, compileTests, generateStubs, or generateTestStubs goals, now also uses the configurator to add the project dependencies to the classpath with the plugin's dependencies. Previously, this only happened in the goals other than the ones mentioned.
Notes
None