Owner:
Juan Manuel Musacchio
This plugin is a port/translation of kogito-maven-plugin for gradle.
https://github.com/jmusacchio/kogito-generator-gradle-plugin
Sources: https://github.com/jmusacchio/kogito-generator-gradle-plugin.git
Version 1.38.0.Final
Created 02 May 2023.
This plugin is a port/translation of kogito-maven-plugin for gradle.
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.jmusacchio.kogito.generator") version "1.38.0.Final"
}
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("io.github.jmusacchio.kogito.generator:io.github.jmusacchio.kogito.generator.gradle.plugin:1.38.0.Final") }It can then be applied in the precompiled script plugin:plugins { id("io.github.jmusacchio.kogito.generator") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.jmusacchio.kogito.generator:io.github.jmusacchio.kogito.generator.gradle.plugin:1.38.0.Final") } } apply(plugin = "io.github.jmusacchio.kogito.generator") - Applying plugins to all subprojects .