Sergii Gnatiuk

Results 32 comments of Sergii Gnatiuk

Hi @skyevil12 I'm the author of this plugin. I have an independent fork of the plugin that is actively maintained. Could you please create the same PR in my [repo](https://github.com/SurpSG/delta-coverage-plugin)?

Hi @wyanlord Not sure the project is still supported. You could try my [fork](https://github.com/SurpSG/delta-coverage-plugin)

Hi @grsky360 I'm planning to release `1.0.0` that fixes the issue but the release is not ready yet. As workaround we could set explicit dependency on `classes` tasks: ``` diffCoverage.dependsOn...

@adityameesho please provide stacktrace ``` ./gradlew diffCoverage -s ```

Hi @adityameesho It's not clear for me why you configure diff coverage plugin inside custom `JacocoReport`. `diffCoverageReport` - is function itself that configures [extension](https://github.com/form-com/diff-coverage-gradle/blob/master/diff-coverage/src/main/kotlin/com/form/coverage/gradle/ChangesetCoverageConfiguration.kt) with further usage in [`DiffCoverageTask`](https://github.com/form-com/diff-coverage-gradle/blob/master/diff-coverage/src/main/kotlin/com/form/coverage/gradle/DiffCoverageTask.kt). ----...

Hi @dbwiddis It's known issue that was caused by fix #34 (release [0.9.1](https://github.com/form-com/diff-coverage-gradle/releases/tag/0.9.1)). The embedded JGit includes only changes that were staged. I played a lot with JGit to generate...

By the way, you could use the next workaround if the issue is critical for you ```groovy ext.createDiffUrl = { -> def diffBase = project.hasProperty('diffBase') ? project.diffBase : 'HEAD' afterEvaluate...

Oh, forgot about changes in http client. The example above works for older versions. But changing URL to file and `diffSource.url` to `diffSource.file` should work

Hi @grsky360 Thank you for reporting the issue. It's the known issue since the early days of development of the plugin. Nevertheless, I'll try to fix it. By the way,...

Currently, I'm developing some new features for the plugin. I faced with a few breaking changes between v4 and v5 that make impossible supporting older Gradle releases. If possible, force...