tschulte/gradle-jnlp-plugin

signJars task broken on Gradle 3.0

amake opened this issue · 0 comments

amake commented

Trying to run signJars with Gradle 3.0 gives an error:

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':signJars'.
> No such property: parallelThreadCount for class: org.gradle.StartParameter

The cause is that parallelThreadCount was deprecated and has been removed in Gradle 3.0. The docs recommend getMaxWorkerCount or isParallelProjectExecutionEnabled instead.