Skip to content

Instantly share code, notes, and snippets.

@oehme
Last active August 29, 2015 14:05
Show Gist options
  • Save oehme/1156982157729406a9ce to your computer and use it in GitHub Desktop.
Save oehme/1156982157729406a9ce to your computer and use it in GitHub Desktop.
Gradle client
plugins {
id 'org.xtext.xtext' version '0.1.0'
}
dependencies {
xtextTooling 'org.xtext.builddsl:org.xtext.builddsl:1.0.0-SNAPSHOT'
}
xtext {
version = '2.6.+'
languages{
builddsl {
setup = 'org.xtext.builddsl.BuildDSLStandaloneSetup'
consumesJava = true
output {
dir = 'build/builddsl'
producesJavaFor sourceSets.main
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment