Search Gradle plugins

org.taruts.gitlab-container

Adds tasks for manipulations with a GitLab instance running in a local Docker container. The operations are: container creation, user creation, deleting the container, deleting the container data etc.

https://gitlab.com/pavel-taruts/gradle-plugins/gitlab-container-gradle-plugin

Sources: https://gitlab.com/pavel-taruts/gradle-plugins/gitlab-container-gradle-plugin.git

Version 1.0.0 (latest)

Created 16 March 2023.

Adds tasks for manipulations with a GitLab instance running in a local Docker container. The operations are: container creation, user creation, deleting the container, deleting the container data etc.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.taruts.gitlab-container") 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("org.taruts.gitlab-container:org.taruts.gitlab-container.gradle.plugin:1.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("org.taruts.gitlab-container")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("org.taruts.gitlab-container:org.taruts.gitlab-container.gradle.plugin:1.0.0")
      }
    }
    
    apply(plugin = "org.taruts.gitlab-container")
  • Applying plugins to all subprojects .