Skip to content

Commit

Permalink
Final update for release 2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex-Vol-SV committed Mar 8, 2019
1 parent 0b56343 commit 3aa09fa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
### Version 2.2.2 (February 2019)
### Version 2.2.2 (March 8, 2019)

* Fix Does this plugin work with JUnit5? - [Issue 79](https://github.com/bmuschko/gradle-clover-plugin/issues/79)
* Fix When Clover is disabled eliminate recompilation of sources during test task execution - [Issue 112](https://github.com/bmuschko/gradle-clover-plugin/issues/112)
* Fix Support for JDK 9 & 10 - [Issue 119](https://github.com/bmuschko/gradle-clover-plugin/issues/119)
* Fix ClassNotFoundException for CloverCompilerAdapter when using OpenClover 4.3.1 on a Java project - [Issue 125](https://github.com/bmuschko/gradle-clover-plugin/issues/125)
* Fix @CompileStatic and safe navigation operator fails cloverGenerateReport task - [Issue 127](https://github.com/bmuschko/gradle-clover-plugin/issues/127)

Thanks to contribution from community member Søren Berg Glasius we have the fix to [Issue 127](https://github.com/bmuschko/gradle-clover-plugin/issues/127)

### Version 2.2.1 (April 24, 2017)

* Fix NPE with Android Plugin - [Issue 111](https://github.com/bmuschko/gradle-clover-plugin/issues/111)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ class InstrumentCodeAction implements Action<Task> {
if (srcDirs.size() > 0) {
String args = getAdditionalArgs()
ant.javac(destdir: destDir.canonicalPath, source: getSourceCompatibility(), target: getTargetCompatibility(),
classpath: classpath, encoding: getEncoding(), executable: getExecutable(), debug: getDebug()) {
includeantruntime: false, classpath: classpath, encoding: getEncoding(), executable: getExecutable(), debug: getDebug()) {
srcDirs.each { srcDir ->
src(path: srcDir)
}
Expand Down

0 comments on commit 3aa09fa

Please sign in to comment.