com.blackbuild.klum-ast-schema
Owner: Stephan Pauxberger
preconfigures a project to produce a KlumAST schema
https://github.com/klum-dsl/klum-ast
Sources: https://github.com/klum-dsl/klum-ast.git
Version 2.0.0-rc.33
2.0.0-rc.33
Created 19 November 2024.
preconfigures a project to produce a KlumAST schema
Using the plugins DSL:
plugins {
id("com.blackbuild.klum-ast-schema") 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.klum-ast-schema")
Using the plugins DSL:
plugins {
id "com.blackbuild.klum-ast-schema" 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.klum-ast-schema"