info.boaventura.maven.credentials
Owner: Valtoni Boaventura
This is a plugin to obtain settings.xml from maven credentials.
https://github.com/valtoni/gradle-plugin-maven-pass
Sources: https://github.com/valtoni/gradle-plugin-maven-pass
Version 1.0.0 (latest)
1.0.0
Created 11 May 2016.
This is a plugin to obtain settings.xml from maven credentials.
Using the plugins DSL:
plugins {
id("info.boaventura.maven.credentials") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0")
}
}
apply(plugin = "info.boaventura.maven.credentials")
Using the plugins DSL:
plugins {
id "info.boaventura.maven.credentials" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.info.boaventura:gradle-plugin-maven-pass:1.0.0"
}
}
apply plugin: "info.boaventura.maven.credentials"