co.coxes.maven-settings-gitlab
Owner: Chris Cox
Gradle plugin for exposing Maven settings file configuration to Gradle project. Supports header authentication for GitLab
https://github.com/acidbee/gradle-maven-settings-plugin
Sources: https://github.com/acidbee/gradle-maven-settings-plugin
Version 0.6.2 (latest)
Created 10 February 2020.
Gradle plugin for exposing Maven settings file configuration to Gradle project. Supports header authentication for GitLab
Add this plugin to your build using the plugins DSL:
plugins {
id("co.coxes.maven-settings-gitlab") version "0.6.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("co.coxes.maven-settings-gitlab:co.coxes.maven-settings-gitlab.gradle.plugin:0.6.2") }
It can then be applied in the precompiled script plugin:plugins { id("co.coxes.maven-settings-gitlab") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("co.coxes.maven-settings-gitlab:co.coxes.maven-settings-gitlab.gradle.plugin:0.6.2") } } apply(plugin = "co.coxes.maven-settings-gitlab")
- Applying plugins to all subprojects .