Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,8 @@ Thumbs.db
Thumbs.db:encryptable
ehthumbs.db
ehthumbs_vista.db

# STS
bin/
!**/src/main/**/bin/
!**/src/test/**/bin/
24 changes: 7 additions & 17 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,28 +11,18 @@ plugins {
id 'application'

// Spring
id 'org.springframework.boot' version '2.3.5.RELEASE'
id 'io.spring.dependency-management' version '1.0.10.RELEASE'
id 'org.springframework.boot' version '2.7.3'
id 'io.spring.dependency-management' version '1.0.13.RELEASE'
Comment on lines 13 to +15
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Spring Boot 2.7.3으로 업그레이드. Spring Boot 3까지 올리지는 않음.

}

repositories {
// Use JCenter for resolving dependencies.
jcenter()
// Use Maven Central for resolving dependencies.
mavenCentral()
Comment on lines -19 to +20
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

}

dependencies {
// Use JUnit Jupiter API for testing.
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.6.2'

// Use JUnit Jupiter Engine for testing.
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine'

// This dependency is used by the application.
implementation 'com.google.guava:guava:29.0-jre'

// Jackson for JSON.
implementation 'com.fasterxml.jackson.core:jackson-core:2.11.3'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.11.3'
// Spring Test
implementation 'org.springframework.boot:spring-boot-starter-test'

// Spring Web
implementation 'org.springframework.boot:spring-boot-starter-web'
Expand All @@ -44,6 +34,6 @@ application {
}

tasks.named('test') {
// Use junit platform for unit tests.
// Use JUnit Platform for unit tests.
useJUnitPlatform()
}
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
3 changes: 2 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-bin.zip
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Gradle 최신 버전으로 업그레이드: https://github.com/gradle/gradle/releases/tag/v7.6.0

networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
269 changes: 164 additions & 105 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading