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