gradle-plugins
gradle-plugins copied to clipboard
collection of gradle plugins
Experiencing with Gradle 6.0.1 and 1.0.20200215081252. Full error: ``` A problem occurred evaluating root project 'converter'. > Failed to apply plugin [class 'com.netflix.gradle.plugins.packaging.SystemPackagingBasePlugin'] > Could not create an instance of...
If you attempt to use the jdk-bootstrap plugin inside a precompiled script plugin, the :generatePrecompiledScriptPluginAccessors task will fail with the following error: ``` org.gradle.internal.exceptions.LocationAwareException: Precompiled script plugin 'C:\Users\Trejkaz\Documents\test\jdk-bootstrap-wrapper-issue\src\main\kotlin\convention.jdk-bootstrap.gradle.kts' line: 1...
In a build using Kotlin DSL, we had tried this: ```kotlin plugins { id("com.github.rmee.jdk-bootstrap") } jdk { allowOverride = false // ... } ``` When we tried to build, it...
Building on top of the Windows batch file PR, but adding: - Updated the shell script patcher to also put the JDK into $HOME/.gradle to match the Windows one -...
AdoptOpenJDK moved, so if convenience methods are still useful, Temurin's is probably the one people are going to want.
Windows devs now get to benefit from this as well. How it was done: * Batch file template similar to the one for shell scripts * PowerShell is run to...
Using this template: ``` jdk { String os = isMacOS() ? 'mac' : isWindows() ? 'win' : 'linux' // mac confirmed, the others are guesses version = '11.0.5+10' urlTemplate =...
My build.gradle: https://gist.github.com/knyttl/93b137c09ade0dd348b9b84740792d78 When I `gradle run`, I can see it still runs on the system default: ``` > Task :run FAILED Exception in thread "main" java.lang.IllegalStateException: This tool must...
I followed the README.md documentation to use the newer `useAdoptOpenJdk8` method. However, it was committed to `master` but hasn't been published to the maven repository.
Our build currently downloads the JDK four times because each included build has a different base location. It would probably make some sense to instead cache the JDK in the...