org.xtext.xtend
Owner: Xtext Team
A Gradle Plugin for generating code with Xtext
https://www.eclipse.org/Xtext/
Using the plugins DSL:
plugins {
id("org.xtext.xtend") version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.xtext:xtext-gradle-plugin:1.0.5")
}
}
apply(plugin = "org.xtext.xtend")
Using the plugins DSL:
plugins {
id "org.xtext.xtend" version "1.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.xtext:xtext-gradle-plugin:1.0.5"
}
}
apply plugin: "org.xtext.xtend"