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