Skip to content
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

[#330] 디펜던시 최신화 #331

Merged
merged 1 commit into from
Jun 10, 2024
Merged
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
32 changes: 16 additions & 16 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,43 +9,37 @@ androidDesugarJdkLibs = "2.0.4"
# https://developer.android.com/jetpack/androidx/releases/core
androidxCore = "1.13.1"
# https://developer.android.com/jetpack/androidx/releases/appcompat
androidxAppCompat = "1.6.1"
androidxAppCompat = "1.7.0"
# https://developer.android.com/jetpack/androidx/releases/lifecycle
androidxLifecycle = "2.7.0"
androidxLifecycle = "2.8.1"
# https://developer.android.com/jetpack/androidx/releases/activity
androidxActivity = "1.9.0"
# https://developer.android.com/jetpack/androidx/releases/datastore
androidxDatastore = "1.1.1"
# https://developer.android.com/jetpack/androidx/releases/glance
androidxGlance = "1.0.0"
glanceExperimentalTools = "0.2.2"
# https://developer.android.com/jetpack/androidx/releases/benchmark
benchmarkMacroJunit4 = "1.2.4"
baselineprofile = "1.2.4"
# https://developer.android.com/jetpack/androidx/releases/profileinstaller
profileinstaller = "1.3.1"
# https://developer.android.com/jetpack/androidx/releases/test-uiautomator
uiAutomator = "2.3.0"
androidxTestRunner = "1.5.2"
# https://androidx.tech/artifacts/benchmark/benchmark-baseline-profile-gradle-plugin/index.html
baselineprofile = "1.2.4"

## Compose
# https://developer.android.com/develop/ui/compose/bom/bom-mapping
androidxComposeBom = "2024.05.00"
# https://developer.android.com/jetpack/androidx/releases/compose-kotlin
androidxComposeCompiler = "1.5.14"
# https://developer.android.com/jetpack/androidx/releases/navigation
androidxComposeNavigation = "2.8.0-beta02"
# https://developer.android.com/jetpack/androidx/releases/compose-material3
androidxComposeMaterial3 = "1.2.1"

# https://github.com/skydoves/landscapist
landscapist = "2.3.3"
landscapist = "2.3.4"
# https://github.com/valentinilk/compose-shimmer
composeShimmer = "1.3.0"

## Kotlin Symbol Processing
# https://github.com/google/ksp/
ksp = "2.0.0-1.0.21"
ksp = "2.0.0-1.0.22"

## Hilt
# https://github.com/google/dagger/releases
Expand All @@ -65,7 +59,7 @@ retrofit = "2.11.0"
# https://github.com/JetBrains/kotlin
kotlin = "2.0.0"
# https://github.com/Kotlin/kotlinx.serialization
kotlinxSerializationJson = "1.7.0-RC"
kotlinxSerializationJson = "1.7.0"
# https://github.com/Kotlin/kotlinx-datetime/releases
kotlinxDatetime = "0.6.0"
# https://github.com/Kotlin/kotlinx.collections.immutable
Expand All @@ -75,11 +69,11 @@ kotlinxImmutable = "0.3.7"
# https://github.com/cashapp/turbine
turbine = "1.1.0"
# https://github.com/Kotlin/kotlinx.coroutines
coroutine = "1.8.1"
coroutine = "1.9.0-RC"

## license
# https://developers.google.com/android/guides/opensource
ossLicenses = "17.0.1"
ossLicenses = "17.1.0"
ossLicensesPlugin = "0.10.6"

## Test
Expand All @@ -88,13 +82,19 @@ junit4 = "4.13.2"
# https://mvnrepository.com/artifact/org.junit.vintage/junit-vintage-engine
junitVintageEngine = "5.10.2"
ui-test-junit4 = "1.6.7"
# https://developer.android.com/jetpack/androidx/releases/test-uiautomator
uiAutomator = "2.3.0"
androidxTestRunner = "1.5.2"
# https://developer.android.com/jetpack/androidx/releases/benchmark
benchmarkMacroJunit4 = "1.2.4"

# # https://developer.android.com/jetpack/androidx/releases/test
androidxTestExt = "1.1.5"
androidxEspresso = "3.5.1"
# # https://github.com/takahirom/roborazzi
roborazzi = "1.20.0"
robolectric = "4.11.1"
# https://github.com/robolectric/robolectric/releases
robolectric = "4.12.2"
# https://kotest.io/
kotest = "5.9.0"
# https://github.com/detekt/detekt
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
# https://gradle.org/releases/
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
Loading