at.schrottner.gitlab-repositories
Owner: Simon Schrottner
Handling GitLab repositories made easy. Easy setup for GitLab dependencies, for gradle plugins and others
http://schrottner.at/gradle-gitlab-repositories/
Sources: https://github.com/aepfli/gradle-gitlab-repositories.git
Version 0.6.1
Created 10 March 2022.
Handling Maven GitLab dependencies easy. Define multiple tokens and selectively apply them to repositories.
Add this plugin to your build using the plugins DSL:
plugins {
id("at.schrottner.gitlab-repositories") version "0.6.1"
}
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("at.schrottner.gitlab-repositories:at.schrottner.gitlab-repositories.gradle.plugin:0.6.1") }
It can then be applied in the precompiled script plugin:plugins { id("at.schrottner.gitlab-repositories") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("at.schrottner.gitlab-repositories:at.schrottner.gitlab-repositories.gradle.plugin:0.6.1") } } apply(plugin = "at.schrottner.gitlab-repositories")
- Applying plugins to all subprojects .