Skip to content

Commit

Permalink
upgrade gradle version to 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
javajigi committed May 27, 2020
1 parent 9698941 commit d218380
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
16 changes: 15 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
plugins {
id 'org.springframework.boot' version '2.3.0.RELEASE'
id 'java'
}

apply plugin: 'io.spring.dependency-management'

apply plugin: 'java'
apply plugin: 'eclipse'

Expand All @@ -8,13 +15,20 @@ repositories {
mavenCentral()
}

ext {
springVersion = '5.2.6.RELEASE'
}

dependencies {
implementation 'com.google.guava:guava:29.0-jre'
implementation 'ch.qos.logback:logback-classic:1.2.3'
implementation 'com.github.jknack:handlebars:4.2.0'
implementation 'org.springframework:spring-core:5.2.6.RELEASE'
implementation 'org.springframework.boot:spring-boot-starter-web'
testImplementation 'org.junit.jupiter:junit-jupiter:5.6.2'
testImplementation 'org.assertj:assertj-core:3.16.1'
testImplementation('org.springframework.boot:spring-boot-starter-test') {
exclude group: 'junit'
}
}

test {
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 1 addition & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#Thu Jul 11 12:58:42 KST 2019
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
1 change: 1 addition & 0 deletions src/test/java/webserver/ExecutorsTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.boot.test.web.client.TestRestTemplate;
import org.springframework.util.StopWatch;

import java.util.concurrent.ExecutorService;
Expand Down

0 comments on commit d218380

Please sign in to comment.