Skip to content
Snippets Groups Projects
Commit 77e913c1 authored by dgelessus's avatar dgelessus
Browse files

Fix dubious indents and formatting in Gradle scripts

parent 012a9ec3
Branches
Tags
No related merge requests found
Pipeline #66413 passed
...@@ -2,10 +2,11 @@ ...@@ -2,10 +2,11 @@
import org.apache.tools.ant.taskdefs.condition.Os import org.apache.tools.ant.taskdefs.condition.Os
project.ext { project.ext {
targetRepositories = [
targetRepositories = ["http://download.eclipse.org/releases/luna/", "http://download.eclipse.org/releases/luna/",
"http://rodin-b-sharp.sourceforge.net/updates", "http://rodin-b-sharp.sourceforge.net/updates",
"https://www3.hhu.de/stups/buildlibs/org.rodinp.dev/"] "https://www3.hhu.de/stups/buildlibs/org.rodinp.dev/",
]
groupID = "de.prob" groupID = "de.prob"
} }
...@@ -16,7 +17,6 @@ apply from: 'tycho_build.gradle' ...@@ -16,7 +17,6 @@ apply from: 'tycho_build.gradle'
/*task bMotionStudioHelpCustumBuild(type: Exec){ /*task bMotionStudioHelpCustumBuild(type: Exec){
commandLine 'ant', '-f','de.bmotionstudio.help/customBuild.xml' commandLine 'ant', '-f','de.bmotionstudio.help/customBuild.xml'
} }
...@@ -25,12 +25,10 @@ install.dependsOn bMotionStudioHelpCustumBuild ...@@ -25,12 +25,10 @@ install.dependsOn bMotionStudioHelpCustumBuild
completeInstall.dependsOn bMotionStudioHelpCustumBuild*/ completeInstall.dependsOn bMotionStudioHelpCustumBuild*/
project(':de.prob.core') { project(':de.prob.core') {
repositories { repositories {
mavenCentral() mavenCentral()
} }
def parser_version = '2.5.1' def parser_version = '2.5.1'
dependencies { dependencies {
...@@ -44,7 +42,6 @@ project(':de.prob.core') { ...@@ -44,7 +42,6 @@ project(':de.prob.core') {
compile group: "de.hhu.stups", name: "theorymapping", version: parser_version, changing: true compile group: "de.hhu.stups", name: "theorymapping", version: parser_version, changing: true
compile 'commons-lang:commons-lang:2.6' compile 'commons-lang:commons-lang:2.6'
} }
} }
project(':de.prob.ui') { project(':de.prob.ui') {
...@@ -98,9 +95,7 @@ task downloadCli { ...@@ -98,9 +95,7 @@ task downloadCli {
} }
task downloadCli2 (type: Exec) { task downloadCli2 (type: Exec) {
def dir = workspacePath + 'de.prob.core/prob/' def dir = workspacePath + 'de.prob.core/prob/'
delete file(dir) delete file(dir)
new File(dir).mkdirs() new File(dir).mkdirs()
...@@ -132,7 +127,6 @@ task downloadCli2 ( type: Exec ) { ...@@ -132,7 +127,6 @@ task downloadCli2 ( type: Exec ) {
} }
completeInstall.dependsOn downloadCli completeInstall.dependsOn downloadCli
completeInstall.dependsOn subprojects.setClassPath completeInstall.dependsOn subprojects.setClassPath
......
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment