Search Gradle plugins

Version 0.4

Created 19 February 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.4"
}

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.4")
  }
}

apply(plugin = "com.lifecosys.gradle.git-maven-repo")

Using the plugins DSL:

plugins {
  id "com.lifecosys.gradle.git-maven-repo" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.lifecosys.gradle:git-maven-repo:0.4"
  }
}

apply plugin: "com.lifecosys.gradle.git-maven-repo"

Learn how to apply plugins to subprojects