搜索Gradle插件

版本 1.0.8(最新版)

1.0.8

创建于2021年7月6日。

github包

使用插件DSL

plugins {
  id("com.github.lahngp.github-package") version "1.0.8"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.lahngp:github-package-nopass:1.0.8")
  }
}

apply(plugin = "com.github.lahngp.github-package")

使用插件DSL

plugins {
  id "com.github.lahngp.github-package" version "1.0.8"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.lahngp:github-package-nopass:1.0.8"
  }
}

apply plugin: "com.github.lahngp.github-package"

学习如何应用到子项目