com.github.umorigu.gradle-git-repo-plugin
Owner: Moriguchi, Hirokazu
Use GitHub repository as a maven repository using native git / ssh
https://github.com/umorigu/gradle-git-repo-plugin
Sources: https://github.com/umorigu/gradle-git-repo-plugin
Version 1.0.1 (latest)
1.0.1
Created 19 April 2020.
Use GitHub repository as a maven repository using native git / ssh
Using the plugins DSL:
plugins {
id("com.github.umorigu.gradle-git-repo-plugin") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.umorigu:gradle-git-repo-plugin:1.0.1")
}
}
apply(plugin = "com.github.umorigu.gradle-git-repo-plugin")
Using the plugins DSL:
plugins {
id "com.github.umorigu.gradle-git-repo-plugin" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.umorigu:gradle-git-repo-plugin:1.0.1"
}
}
apply plugin: "com.github.umorigu.gradle-git-repo-plugin"