io.github.chr56.tools.release
Owner: chr_56
A tiny Gradle Plugin for publishing Android Artifacts!
https://github.com/chr56/AndroidArtifactsPublish
Sources: https://github.com/chr56/AndroidArtifactsPublish
Version 0.1.2 (latest)
0.1.2
Created 29 June 2024.
A tiny Gradle Plugin for publishing Android Artifacts!
Using the plugins DSL:
plugins {
id("io.github.chr56.tools.release") version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.chr56:release-artifacts-publish:0.1.2")
}
}
apply(plugin = "io.github.chr56.tools.release")
Using the plugins DSL:
plugins {
id "io.github.chr56.tools.release" version "0.1.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.chr56:release-artifacts-publish:0.1.2"
}
}
apply plugin: "io.github.chr56.tools.release"