mirror of
https://github.com/sigmasternchen/xtext-core
synced 2025-03-15 08:18:55 +00:00
Allow to pass eclipse dir since it's not always simply relative to the core dir
This commit is contained in:
parent
6e243524dc
commit
56d43cdc6a
1 changed files with 3 additions and 3 deletions
|
@ -4,6 +4,7 @@ import org.eclipse.xtext.xtext.generator.*
|
|||
import org.eclipse.xtext.xtext.generator.model.project.*
|
||||
|
||||
var rootPath = ".."
|
||||
var eclipsePath = "${rootPath}/../xtext-eclipse/org.eclipse.xtext.testlanguages.ui"
|
||||
|
||||
Workflow {
|
||||
|
||||
|
@ -20,15 +21,14 @@ Workflow {
|
|||
|
||||
eclipsePlugin = {
|
||||
enabled = true
|
||||
root = "${rootPath}/../xtext-eclipse/org.eclipse.xtext.testlanguages.ui"
|
||||
root = eclipsePath
|
||||
}
|
||||
eclipsePluginTest = {
|
||||
enabled = true
|
||||
root = "${rootPath}/../xtext-eclipse/org.eclipse.xtext.testlanguages.ui"
|
||||
root = eclipsePath
|
||||
}
|
||||
ideaPlugin = {
|
||||
enabled = false
|
||||
root = "${rootPath}/../xtext-intellij/org.eclipse.xtext.testlanguages.idea"
|
||||
}
|
||||
|
||||
createEclipseMetaData = true
|
||||
|
|
Loading…
Reference in a new issue