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.

Using the plugins DSL:

plugins {
  id("org.taruts.gitlab-container") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.taruts:gitlab-container-gradle-plugin:1.0.0")
  }
}

apply(plugin = "org.taruts.gitlab-container")

Using the plugins DSL:

plugins {
  id "org.taruts.gitlab-container" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.taruts:gitlab-container-gradle-plugin:1.0.0"
  }
}

apply plugin: "org.taruts.gitlab-container"

Learn how to apply plugins to subprojects