Skip to content
Snippets Groups Projects
Commit 462685b4 authored by Johannes Mey's avatar Johannes Mey
Browse files

fix gradle build file and grammar location

parent b5bd462a
No related branches found
No related tags found
No related merge requests found
......@@ -79,14 +79,14 @@ jar {
}
from {
configurations.runtimeClasspath.collect { return (it.isDirectory() ? it : zipTree(it)) : null }
configurations.runtimeClasspath.collect { return (it.isDirectory() ? it : zipTree(it)) }
}
}
def relastJar = 'libs/relast.jar'
def relastFiles = ['./src/main/jastadd/common/MotionGrammar.relast', './src/main/jastadd/World.relast', './src/main/jastadd/LoadUnload.relast']
def grammarPrefix = './src/gen/jastadd/MotionGrammar'
def grammarDiagramFile = './src/gen/resources/diagrams/grammar/uml.png'
def relastFiles = ['./src/main/jastadd/{{cookiecutter.project_short_name}}.relast']
def grammarPrefix = './src/gen/jastadd/{{cookiecutter.project_short_name}}'
def grammarDiagramFile = './src/gen/resources/{{cookiecutter.project_short_name}}Grammar.png'
def jastAddListName = 'JastAddList'
task generateGrammarDiagrams(type: JavaExec) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment