Search Gradle plugins

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.4

Created 19 February 2018.

Plugin for using any git repository as maven repository for dependency and publish.

Add this plugin to your build using the plugins DSL:

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.lifecosys.gradle.git-maven-repo:com.lifecosys.gradle.git-maven-repo.gradle.plugin:0.4")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.lifecosys.gradle.git-maven-repo")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.lifecosys.gradle.git-maven-repo:com.lifecosys.gradle.git-maven-repo.gradle.plugin:0.4")
      }
    }
    
    apply(plugin = "com.lifecosys.gradle.git-maven-repo")
  • Applying plugins to all subprojects .