com.blackbuild.convention.groovy
Owner: Stephan Pauxberger
Adds Groovy and Spock dependencies to the project
https://github.com/klum-dsl/klum-ast
Sources: https://github.com/klum-dsl/klum-ast.git
Version 2.0.0-rc.32
2.0.0-rc.32
Created 18 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.32"
}
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.32")
}
}
apply(plugin = "com.blackbuild.convention.groovy")
Using the plugins DSL:
plugins {
id "com.blackbuild.convention.groovy" version "2.0.0-rc.32"
}
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.32"
}
}
apply plugin: "com.blackbuild.convention.groovy"