Search Gradle plugins

org.dslab.gradle.ecore

Provides code generation from Eclipse EMF Ecore models and integration with additional dependent Java sources.

https://github.com/ds-lab/gradle-ecore-plugin

Sources: https://github.com/ds-lab/gradle-ecore-plugin.git

Version 1.1.3

Created 17 December 2018.

Provides code generation from Eclipse EMF Ecore models and integration with additional dependent Java sources.

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.dslab.gradle.ecore") version "1.1.3"
}

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