com.lifecosys.gradle.git-maven-repo
Owner: Young Gu
Plugin for using any git repository as maven repository for dependency and publish.
https://github.com/hyysguyang/gradle-git-maven-repo-plugin
Sources: https://github.com/hyysguyoung/gradle-git-maven-repo-plugin.git
Version 0.5 (latest)
0.5
Created 11 March 2018.
Plugin for using any git repository as maven repository for dependency and publish.
Using the plugins DSL:
plugins {
id("com.lifecosys.gradle.git-maven-repo") version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.lifecosys.gradle:git-maven-repo:0.5")
}
}
apply(plugin = "com.lifecosys.gradle.git-maven-repo")
Using the plugins DSL:
plugins {
id "com.lifecosys.gradle.git-maven-repo" version "0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.lifecosys.gradle:git-maven-repo:0.5"
}
}
apply plugin: "com.lifecosys.gradle.git-maven-repo"