org.dslab.gradle.ecore
Owner:
Adrian Rumpold
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.0.1
Created 21 March 2018.
Provides code generation from Eclipse EMF Ecore models and integration with additional dependent Java sources.
Using the plugins DSL:
plugins {
id("org.dslab.gradle.ecore") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.dslab.gradle:ecore-plugin:1.0.1")
}
}
apply(plugin = "org.dslab.gradle.ecore")
Using the plugins DSL:
plugins {
id "org.dslab.gradle.ecore" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.dslab.gradle:ecore-plugin:1.0.1"
}
}
apply plugin: "org.dslab.gradle.ecore"