-
Notifications
You must be signed in to change notification settings - Fork 92
Switch from Marko to Svelte #107
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -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' | ||
| } | ||
|
|
||
| repositories { | ||
| // Use JCenter for resolving dependencies. | ||
| jcenter() | ||
| // Use Maven Central for resolving dependencies. | ||
| mavenCentral() | ||
|
Comment on lines
-19
to
+20
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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' | ||
|
|
@@ -44,6 +34,6 @@ application { | |
| } | ||
|
|
||
| tasks.named('test') { | ||
| // Use junit platform for unit tests. | ||
| // Use JUnit Platform for unit tests. | ||
| useJUnitPlatform() | ||
| } | ||
| 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 | ||
|
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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 | ||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
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까지 올리지는 않음.