org.datlowe.maven-publish-auth
Owner: Jan Dědek
Gradle plugin for managing authentication of upload tasks
https://github.com/datlowe/gradle-maven-publish-auth
Sources: https://github.com/datlowe/gradle-maven-publish-auth.git
Version 2.0.2-SNAPSHOT
2.0.2-SNAPSHOT
Created 30 November 2018.
Gradle plugin for managing authentication of upload tasks
Using the plugins DSL:
plugins {
id("org.datlowe.maven-publish-auth") version "2.0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.datlowe.maven-publish-auth:buildSrc:2.0.2-SNAPSHOT")
}
}
apply(plugin = "org.datlowe.maven-publish-auth")
Using the plugins DSL:
plugins {
id "org.datlowe.maven-publish-auth" version "2.0.2-SNAPSHOT"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.datlowe.maven-publish-auth:buildSrc:2.0.2-SNAPSHOT"
}
}
apply plugin: "org.datlowe.maven-publish-auth"