diff --git a/tycho_build.gradle b/tycho_build.gradle index 8e66a6f36d173b5d2a98220b52c667a374707b5a..381c3245b61662d3427e9ecb19daa1a217994eec 100644 --- a/tycho_build.gradle +++ b/tycho_build.gradle @@ -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) {