搜索Gradle插件

版本 0.0.1-SNAPSHOT(最新版)

0.0.1-SNAPSHOT

创建于2019年9月18日。

使用Kotlin编写的Gradle插件,用于创建GitHub发布

使用插件DSL

plugins {
  id("com.jlessing.github-release") version "0.0.1-SNAPSHOT"
}

使用原有插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.jlessing.gradle.plugins.github.release:github-release-gradle-plugin:0.0.1-SNAPSHOT")
  }
}

apply(plugin = "com.jlessing.github-release")

使用插件DSL

plugins {
  id "com.jlessing.github-release" version "0.0.1-SNAPSHOT"
}

使用原有插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.jlessing.gradle.plugins.github.release:github-release-gradle-plugin:0.0.1-SNAPSHOT"
  }
}

apply plugin: "com.jlessing.github-release"

了解如何将插件应用于子项目