Search Gradle plugins

jp.henry.maven.repository

Make it easier downloading artifacts from GitHub Packages.

https://github.com/bw-company/henry-maven-repository

Version 1.0.1 (latest)

Created 03 October 2022.

Make it easier downloading artifacts from GitHub Packages.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects