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.37 (latest)
Created 04 December 2024.
preconfigures a project to produce a KlumAST schema
Add this plugin to your build using the plugins DSL:
plugins {
id("com.blackbuild.klum-ast-schema") version "2.0.0-rc.37"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.blackbuild.klum-ast-schema:com.blackbuild.klum-ast-schema.gradle.plugin:2.0.0-rc.37") }
It can then be applied in the precompiled script plugin:plugins { id("com.blackbuild.klum-ast-schema") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.blackbuild.klum-ast-schema:com.blackbuild.klum-ast-schema.gradle.plugin:2.0.0-rc.37") } } apply(plugin = "com.blackbuild.klum-ast-schema")
- Applying plugins to all subprojects .