de.clashsoft.simple-publish
Owner: Adrian Kunz
A Gradle plugin that simplifies publishing to Maven and Bintray.
https://github.com/Clashsoft/Simple-Publish
Sources: https://github.com/Clashsoft/Simple-Publish
Version 0.6.0 (latest)
0.6.0
Created 13 October 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
A Gradle plugin that simplifies publishing to Maven and Bintray.
Using the plugins DSL:
plugins {
id("de.clashsoft.simple-publish") version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.clashsoft:simple-publish:0.6.0")
}
}
apply(plugin = "de.clashsoft.simple-publish")
Using the plugins DSL:
plugins {
id "de.clashsoft.simple-publish" version "0.6.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.clashsoft:simple-publish:0.6.0"
}
}
apply plugin: "de.clashsoft.simple-publish"