Search Gradle plugins

com.ryandens.temurin-binaries-repository

Defines an ivy repository for Gradle projects to enable builds to consume binaries released by the Eclipse Adoptium GitHub account

https://www.ryandens.com

Sources: https://github.com/ryandens/jlink-gradle-plugin

Version 0.4.1 (latest)

0.4.1

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:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.ryandens:temurin-binaries-repository:0.4.1")
      }
    }
    
    apply(plugin = "com.ryandens.temurin-binaries-repository")
  • Applying plugins to all subprojects .