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)
Created 11 May 2016.
This is a plugin to obtain settings.xml from maven credentials.
Add this plugin to your build using the plugins DSL:
plugins {
id("info.boaventura.maven.credentials") version "1.0.0"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("info.boaventura.maven.credentials:info.boaventura.maven.credentials.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("info.boaventura.maven.credentials") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("info.boaventura.maven.credentials:info.boaventura.maven.credentials.gradle.plugin:1.0.0") } } apply(plugin = "info.boaventura.maven.credentials")
- Applying plugins to all subprojects .