com.trevjonez.AndroidGithubReleasePlugin
Owner: Trevor Jones
Android variant aware tasks for creating github releases and uploading assets
https://github.com/trevjonez/AndroidGithubReleasePlugin
Sources: https://github.com/trevjonez/AndroidGithubReleasePlugin.git
Version 1.2.2 (latest)
1.2.2
Created 03 July 2019.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Android variant aware tasks for creating github releases and uploading assets
Using the plugins DSL:
plugins {
id("com.trevjonez.AndroidGithubReleasePlugin") version "1.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.trevjonez.AndroidGithubReleasePlugin:plugin:1.2.2")
}
}
apply(plugin = "com.trevjonez.AndroidGithubReleasePlugin")
Using the plugins DSL:
plugins {
id "com.trevjonez.AndroidGithubReleasePlugin" version "1.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.trevjonez.AndroidGithubReleasePlugin:plugin:1.2.2"
}
}
apply plugin: "com.trevjonez.AndroidGithubReleasePlugin"