Search Gradle plugins

Version 0.11.0-alpha.5

Created 09 June 2021.

Authentication support for the Gitlab provider in Terraform

Using the plugins DSL:

plugins {
  id("org.ysb33r.terraform.gitlab") version "0.11.0-alpha.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.ysb33r.gradle:terraform-gradle-base:0.11.0-alpha.5")
  }
}

apply(plugin = "org.ysb33r.terraform.gitlab")

Using the plugins DSL:

plugins {
  id "org.ysb33r.terraform.gitlab" version "0.11.0-alpha.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.ysb33r.gradle:terraform-gradle-base:0.11.0-alpha.5"
  }
}

apply plugin: "org.ysb33r.terraform.gitlab"

Learn how to apply plugins to subprojects