jp.henry.maven.repository
Owner: Kengo TODA
Make it easier downloading artifacts from GitHub Packages.
https://github.com/bw-company/henry-maven-repository
Sources: https://github.com/bw-company/henry-maven-repository.git
Version 2.0.0 (latest)
2.0.0
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"