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

1.1.1

Created 20 September 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.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.org.dslab.gradle:ecore-plugin:1.1.1")
      }
    }
    
    apply(plugin = "org.dslab.gradle.ecore")
  • Applying plugins to all subprojects .