Search Gradle plugins

at.schrottner.gitlab-repositories

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.0-beta1

0.6.0-beta1

Created 26 January 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.0-beta1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("at.schrottner.gradle.gitlab-plugin:gitlab-repositories:0.6.0-beta1")
      }
    }
    
    apply(plugin = "at.schrottner.gitlab-repositories")
  • Applying plugins to all subprojects .