Search Gradle plugins

Version 2.0.0-rc.33

2.0.0-rc.33

Created 19 November 2024.

Adds Groovy and Spock dependencies to the project

Using the plugins DSL:

plugins {
  id("com.blackbuild.convention.groovy") version "2.0.0-rc.33"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.blackbuild.klum.ast:klum-ast-gradle-plugin:2.0.0-rc.33")
  }
}

apply(plugin = "com.blackbuild.convention.groovy")

Using the plugins DSL:

plugins {
  id "com.blackbuild.convention.groovy" version "2.0.0-rc.33"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.blackbuild.klum.ast:klum-ast-gradle-plugin:2.0.0-rc.33"
  }
}

apply plugin: "com.blackbuild.convention.groovy"

Learn how to apply plugins to subprojects