Search Gradle plugins

Gradle plugin to compile C++ projects of the MDE4CPP framework using CMake

Version 0.2

Created 10 February 2018.

Gradle plugin to compile C++ projects of the MDE4CPP framework using cmake and gnu compiler. 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-compile-plugin") version "0.2"
}

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-compile-plugin:tui.sse.mde4cpp.mde4cpp-compile-plugin.gradle.plugin:0.2")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("tui.sse.mde4cpp.mde4cpp-compile-plugin")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("tui.sse.mde4cpp.mde4cpp-compile-plugin:tui.sse.mde4cpp.mde4cpp-compile-plugin.gradle.plugin:0.2")
      }
    }
    
    apply(plugin = "tui.sse.mde4cpp.mde4cpp-compile-plugin")
  • Applying plugins to all subprojects .