Skip to content

Commit

Permalink
fix order of statements in gradle file
Browse files Browse the repository at this point in the history
  • Loading branch information
Simon Weiler committed Jun 16, 2017
1 parent 5300f6f commit 5b122a1
Showing 1 changed file with 15 additions and 13 deletions.
28 changes: 15 additions & 13 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE"
classpath "com.github.ben-manes:gradle-versions-plugin:0.15.0"
}
}

plugins {
id "com.gorylenko.gradle-git-properties" version "1.4.17"
}

apply plugin: 'idea'
apply plugin: 'eclipse'
apply plugin: 'java'
Expand All @@ -9,16 +24,6 @@ apply from: 'dependencies.gradle'

defaultTasks 'clean', 'check'

buildscript {
repositories {
maven { url "http://repo.spring.io/libs-snapshot" }
mavenLocal()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.3.RELEASE"
classpath "com.github.ben-manes:gradle-versions-plugin:0.15.0"
}
}

archivesBaseName = 'edison-jobtrigger'
group = 'de.otto.edison'
Expand All @@ -31,9 +36,6 @@ repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots/" }
}

plugins {
id "com.gorylenko.gradle-git-properties" version "1.4.17"
}

configurations.all {
// check for updates every build
Expand Down

0 comments on commit 5b122a1

Please sign in to comment.