Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Bell Safe House API
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Connected Life
Bell Safe House API
Merge requests
!23
Resolve "프로젝트 코틀린 버전 업그레이드 (1.7.20)"
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Resolve "프로젝트 코틀린 버전 업그레이드 (1.7.20)"
89-kotlin_version_upgrade
into
main
Overview
2
Commits
1
Pipelines
1
Changes
1
Merged
Bell
requested to merge
89-kotlin_version_upgrade
into
main
2 years ago
Overview
2
Commits
1
Pipelines
1
Changes
1
Expand
작업 내용
기능 추가
기능 개선
버그 수정
안정성 개선
리팩토링
기타
배경
코틀린 최신 버전 문법을 사용하기 위해 작업
세부 내용 및 스크린샷
코틀린 버전 업그레이드
리뷰어
@Tetrahedrite_
리뷰 우선순위
빠르게
보통
천천히
체크리스트
연관 이슈
Closes
#89 (closed)
0
0
Merge request reports
Compare
main
main (base)
and
latest version
latest version
516861b6
1 commit,
2 years ago
1 file
+
6
−
6
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
build.gradle.kts
+
6
−
6
Options
@@ -10,9 +10,9 @@ plugins {
jacoco
kotlin
(
"jvm"
)
version
"1.
6
.2
1
"
kotlin
(
"plugin.spring"
)
version
"1.
6
.2
1
"
kotlin
(
"plugin.jpa"
)
version
"1.
6
.2
1
"
kotlin
(
"jvm"
)
version
"1.
7
.2
0
"
kotlin
(
"plugin.spring"
)
version
"1.
7
.2
0
"
kotlin
(
"plugin.jpa"
)
version
"1.
7
.2
0
"
}
jacoco
{
@@ -28,7 +28,7 @@ repositories {
}
object
Versions
{
const
val
kotlin
Reflect
=
"1.7.
1
0"
const
val
kotlin
=
"1.7.
2
0"
const
val
springBoot
=
"2.7.2"
const
val
springSecurity
=
"5.7.2"
const
val
springBatch
=
"4.3.6"
@@ -51,8 +51,8 @@ object Versions {
object
Libraries
{
// Language
const
val
kotlinReflect
=
"org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin
Reflect
}"
const
val
kotlinStandardLibrary
=
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlin
Reflect
}"
const
val
kotlinReflect
=
"org.jetbrains.kotlin:kotlin-reflect:${Versions.kotlin}"
const
val
kotlinStandardLibrary
=
"org.jetbrains.kotlin:kotlin-stdlib-jdk8:${Versions.kotlin}"
// Server
const
val
springBootStarterWeb
=
"org.springframework.boot:spring-boot-starter-web:${Versions.springBoot}"
Loading