Search Gradle plugins

tui.sse.mde4cpp.mde4cpp-generate-plugin

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.1

Created 25 July 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

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.

Using the plugins DSL:

plugins {
  id("tui.sse.mde4cpp.mde4cpp-generate-plugin") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.tui.sse.mde4cpp:MDE4CPPGeneratePlugin:0.1")
  }
}

apply(plugin = "tui.sse.mde4cpp.mde4cpp-generate-plugin")

Using the plugins DSL:

plugins {
  id "tui.sse.mde4cpp.mde4cpp-generate-plugin" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.tui.sse.mde4cpp:MDE4CPPGeneratePlugin:0.1"
  }
}

apply plugin: "tui.sse.mde4cpp.mde4cpp-generate-plugin"

Learn how to apply plugins to subprojects