com.fipsoft.maven-repo-settings
Owner:
Edgar Harutyunyan
Gradle plugin for resolving internal maven repository credentials directly from settings.xml file
https://github.com/h-ed/maven-repo-settings
Sources: https://github.com/h-ed/maven-repo-settings
Version 0.3.2 (latest)
Created 12 July 2017.
Gradle plugin for resolving internal maven repository credentials directly from settings.xml file
Add this plugin to your build using the plugins DSL:
plugins {
id("com.fipsoft.maven-repo-settings") version "0.3.2"
}
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("com.fipsoft.maven-repo-settings:com.fipsoft.maven-repo-settings.gradle.plugin:0.3.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.fipsoft.maven-repo-settings") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fipsoft.maven-repo-settings:com.fipsoft.maven-repo-settings.gradle.plugin:0.3.2") } } apply(plugin = "com.fipsoft.maven-repo-settings")
- Applying plugins to all subprojects .