Skip to content

Commit

Permalink
chore: updated to latest gradle and Spring Boot versions
Browse files Browse the repository at this point in the history
  • Loading branch information
toedter committed Mar 30, 2018
1 parent 5bc30bc commit 0115b6e
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Expand Up @@ -3,7 +3,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:1.5.8.RELEASE")
classpath("org.springframework.boot:spring-boot-gradle-plugin:2.0.0.RELEASE")
}
}

Expand Down Expand Up @@ -33,7 +33,7 @@ allprojects {
apply plugin: 'eclipse'

task wrapper(type: Wrapper) {
gradleVersion = '4.2.1'
gradleVersion = '4.6'
}

repositories {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.2.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-bin.zip
1 change: 1 addition & 0 deletions lab1/complete/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
Expand Down
1 change: 1 addition & 0 deletions lab1/initial/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
Expand Down
1 change: 1 addition & 0 deletions lab2/complete/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
Expand Down
1 change: 1 addition & 0 deletions lab2/initial/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'

dependencies {
compile("org.springframework.boot:spring-boot-starter-web")
Expand Down
1 change: 1 addition & 0 deletions lab6/complete/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.moowork.node'

node {
Expand Down
1 change: 1 addition & 0 deletions lab7/complete/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.moowork.node'

node {
Expand Down
1 change: 1 addition & 0 deletions lab7/initial/build.gradle
@@ -1,5 +1,6 @@
apply plugin: 'java'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'com.moowork.node'

node {
Expand Down

0 comments on commit 0115b6e

Please sign in to comment.