io.vrap.rmf.codegen-plugin
Owner: BENIASAAD Achraf
This a code generator for the ramle specification, the supported language for this version is java
Sources: https://github.com/vrapio/rmf-codegen/tree/master/codegen-gradle-plugin
Version 0.1.0-20180905092748
Created 05 September 2018.
This a code generator for the ramle specification, the supported language for this version is java
Add this plugin to your build using the plugins DSL:
plugins {
id("io.vrap.rmf.codegen-plugin") version "0.1.0-20180905092748"
}
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.vrap.rmf.codegen-plugin:io.vrap.rmf.codegen-plugin.gradle.plugin:0.1.0-20180905092748") }
It can then be applied in the precompiled script plugin:plugins { id("io.vrap.rmf.codegen-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.vrap.rmf.codegen-plugin:io.vrap.rmf.codegen-plugin.gradle.plugin:0.1.0-20180905092748") } } apply(plugin = "io.vrap.rmf.codegen-plugin")
- Applying plugins to all subprojects .