com.ryandens.temurin-binaries-repository
Owner: Ryan Dens
Defines an ivy repository for Gradle projects to enable builds to consume binaries released by the Eclipse Adoptium GitHub account
Sources: https://github.com/ryandens/jlink-gradle-plugin
Version 0.4.1 (latest)
Created 16 September 2024.
Defines an ivy repository for Gradle projects to enable builds to consume binaries released by the Eclipse Adoptium GitHub account
Add this plugin to your build using the plugins DSL:
plugins {
id("com.ryandens.temurin-binaries-repository") version "0.4.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.ryandens.temurin-binaries-repository:com.ryandens.temurin-binaries-repository.gradle.plugin:0.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.ryandens.temurin-binaries-repository") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.ryandens.temurin-binaries-repository:com.ryandens.temurin-binaries-repository.gradle.plugin:0.4.1") } } apply(plugin = "com.ryandens.temurin-binaries-repository")
- Applying plugins to all subprojects .