com.jlessing.github-release
拥有者: Jonathan Lessing
使用Kotlin编写的Gradle插件,用于创建GitHub发布
https://github.com/jlessing-git/github-release-gradle-plugin
源代码: https://github.com/jlessing-git/github-release-test-gradle-plugin.git
版本 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"