com.blackbuild.klum-ast-model
Owner: Stephan Pauxberger
preconfigures a project to produce a KlumAST model
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 model
Add this plugin to your build using the plugins DSL:
plugins {
id("com.blackbuild.klum-ast-model") 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-model:com.blackbuild.klum-ast-model.gradle.plugin:2.0.0-rc.37") }
It can then be applied in the precompiled script plugin:plugins { id("com.blackbuild.klum-ast-model") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.blackbuild.klum-ast-model:com.blackbuild.klum-ast-model.gradle.plugin:2.0.0-rc.37") } } apply(plugin = "com.blackbuild.klum-ast-model")
- Applying plugins to all subprojects .