Skip to content
Snippets Groups Projects
Commit 094a26a9 authored by dgelessus's avatar dgelessus
Browse files

Remove defaults for a few properties in tycho_build.gradle

parent d29dbc43
No related branches found
No related tags found
No related merge requests found
......@@ -38,37 +38,6 @@ try {
project.ext.dependencyFolder = "lib/dependencies/" // Folder in each subproject where
}
try {
groupID = groupID
} catch (MissingPropertyException e) {
// workspace nach releng durchsuchen
def folderNames = []
def folders = []
println "folders:"
new File(workspacePath+".").listFiles().each{dir ->
if (dir.isDirectory()) {
folders << dir.getName()
}
}
folders.each { it ->
it = (String)it.replaceFirst(/\.\//, "")
// subProjects eventuell unnötig settings.gradle datei stattdessen benutzen
if (!(it ==~ /\..+/ || it ==~ /.*.repository/ || it ==~ /.*.parent/)) {
folderNames << it
}
}
project.ext.groupID = "group"
for (int i = 0; i < folderNames.size(); i++) {
if (folderNames[i] ==~ /.*\.[rR]eleng/) {
groupID = folderNames[i]
groupID = groupID.replace(".releng", "")
groupID = groupID.replace(".Releng", "")
}
}
}
try {
features = features
} catch (MissingPropertyException e) {
......@@ -102,12 +71,6 @@ try {
// categoryDescriptions = [["feature": "labelName", "feature2": "label"], ["feature": "featureDescription", "feature2": "feature2Description"]] // label and descriptions of the features
}
try {
targetRepositories = targetRepositories
} catch (MissingPropertyException e) {
project.ext.targetRepositories = ["https://download.eclipse.org/releases/luna/"]
}
try {
buildProduct = buildProduct
} catch (MissingPropertyException e) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment