Search Gradle plugins

Version 2.0.0 (latest)

Created 07 April 2023.

Make it easier downloading artifacts from GitHub Packages.

Using the plugins DSL:

plugins {
  id("jp.henry.maven.repository") version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("jp.henry.gradle:plugin:2.0.0")
  }
}

apply(plugin = "jp.henry.maven.repository")

Using the plugins DSL:

plugins {
  id "jp.henry.maven.repository" version "2.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "jp.henry.gradle:plugin:2.0.0"
  }
}

apply plugin: "jp.henry.maven.repository"

Learn how to apply plugins to subprojects