Skip to content

Commit

Permalink
fix workflows regarding monorepo
Browse files Browse the repository at this point in the history
Signed-off-by: Christian Dietrich <christian.dietrich@itemis.de>
  • Loading branch information
cdietrich committed Jun 20, 2023
1 parent 28705a8 commit d84e315
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ Workflow {
}
eclipsePlugin = {
enabled = true
root = "../../xtext-eclipse/org.eclipse.xtext.purexbase.ui"
root = "../org.eclipse.xtext.purexbase.ui"
}
eclipsePluginTest = {
enabled = true
root = "../../xtext-eclipse/org.eclipse.xtext.purexbase.eclipse.tests"
root = "../org.eclipse.xtext.purexbase.eclipse.tests"
}
createEclipseMetaData = true
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +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"
var eclipsePath = "${rootPath}/org.eclipse.xtext.testlanguages.ui"

var fileHeader = "/*******************************************************************************
* Copyright (c) 2010, \${year} itemis AG (http://www.itemis.eu) and others.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import org.eclipse.xtext.xtext.generator.*

var rootPath = ".."
var generateEclipse = true
var eclipsePath = "${rootPath}/../xtext-eclipse/org.eclipse.xtext.xbase.testlanguages.ui"
var uiTestPath = "${rootPath}/../xtext-eclipse/org.eclipse.xtext.xbase.ui.tests"
var eclipsePath = "${rootPath}/org.eclipse.xtext.xbase.testlanguages.ui"
var uiTestPath = "${rootPath}/org.eclipse.xtext.xbase.ui.tests"

var fileHeader = "/*******************************************************************************
* Copyright (c) 2011, \${year} itemis AG (http://www.itemis.eu) and others.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ var baseName = "org.eclipse.xtext"
var runtimeProjectName = baseName
var ideProjectName = "${baseName}.xtext.ide"
var eclipseProjectName = "${baseName}.xtext.ui"
var eclipseProjectPath = "${rootPath}/../xtext-eclipse/${eclipseProjectName}"
var eclipseProjectPath = "${rootPath}/${eclipseProjectName}"

var fileHeader = "/*******************************************************************************
* Copyright (c) 2010, \${year} itemis AG (http://www.itemis.eu) and others.
Expand Down

0 comments on commit d84e315

Please sign in to comment.