tui.sse.mde4cpp.mde4cpp-generate-plugin
Owner: Alexander Wichmann
Gradle plugin to generate C++ code of ecore or UML models inside the MDE4CPP framework. Release notes version 0.1: - Plugin to execute MDE4CPP generators More information about MDE4CPP can be found under https://sse.tu-ilmenau.de/mde4cpp. Information about this plugin can be found under https://github.com/MDE4CPP/gradlePlugins.
Version 0.4 (latest)
Created 16 September 2018.
Gradle plugin to generate C++ code of ecore or UML models inside the MDE4CPP framework.
Release notes version 0.1:
- Plugin to execute MDE4CPP generators
Release notes version 0.2:
- add up-to-date check
Release notes version 0.3:
- add related models to up-to-date check (only available in experimental mode)
- add experimental mode (declare property 'experimentalMode=true' inside gradle.properties
Release notes version 0.4:
- add dependency to generator
- rename compile property "make_parallel_jobs" to "workerCount"
More information about MDE4CPP can be found under https://sse.tu-ilmenau.de/mde4cpp.
Information about this plugin can be found under https://github.com/MDE4CPP/gradlePlugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("tui.sse.mde4cpp.mde4cpp-generate-plugin") version "0.4"
}
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("tui.sse.mde4cpp.mde4cpp-generate-plugin:tui.sse.mde4cpp.mde4cpp-generate-plugin.gradle.plugin:0.4") }
It can then be applied in the precompiled script plugin:plugins { id("tui.sse.mde4cpp.mde4cpp-generate-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("tui.sse.mde4cpp.mde4cpp-generate-plugin:tui.sse.mde4cpp.mde4cpp-generate-plugin.gradle.plugin:0.4") } } apply(plugin = "tui.sse.mde4cpp.mde4cpp-generate-plugin")
- Applying plugins to all subprojects .