Skip to content

Commit

Permalink
Spring Boot 1.5.1 to 1.5.2
Browse files Browse the repository at this point in the history
Gradle 3.3 to 3.4.1
  • Loading branch information
jkazama committed Mar 8, 2017
1 parent 05d3918 commit dcc6811
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@ buildscript {
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.1.RELEASE"
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.5.2.RELEASE"
}
}

apply plugin: "java"
apply plugin: "org.springframework.boot"
apply plugin: "eclipse"

version = "1.5.0"
version = "1.5.1"

sourceCompatibility = '1.7'
targetCompatibility = '1.7'
Expand Down Expand Up @@ -53,5 +53,5 @@ dependencies {
}

task wrapper(type: Wrapper) {
gradleVersion = "3.3"
gradleVersion = "3.4.1"
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Fri Jan 27 11:43:44 JST 2017
#Wed Mar 08 12:12:03 JST 2017
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-3.4.1-bin.zip
2 changes: 1 addition & 1 deletion src/main/java/sample/ValidationException.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ public Warns add(String field, String message, String[] messageArgs) {
}

public Warn head() {
Assert.notEmpty(list);
Assert.notEmpty(list, "Not found warn.");
return list.get(0);
}

Expand Down

0 comments on commit dcc6811

Please sign in to comment.