Skip to content

Commit

Permalink
update gradle version
Browse files Browse the repository at this point in the history
  • Loading branch information
Razeeman committed Nov 16, 2024
1 parent de472e9 commit 8a8144b
Show file tree
Hide file tree
Showing 7 changed files with 14 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -112,8 +112,6 @@ object Deps {
"junit:junit:${Versions.junit}"
const val mockito =
"org.mockito:mockito-core:${Versions.mockito}"
const val mockitoInline =
"org.mockito:mockito-inline:${Versions.mockito}"
const val coroutines =
"org.jetbrains.kotlinx:kotlinx-coroutines-test:${Versions.coroutinesTest}"
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
package com.example.util.simpletimetracker

object Versions {
const val gradle = "8.2.0"
const val kotlin = "1.8.22"
const val gradle = "8.4.0"
const val kotlin = "1.9.25"
const val ktlint = "12.1.0"

const val coroutines = "1.6.4"
Expand All @@ -12,7 +12,7 @@ object Versions {
const val appcompat = "1.7.0"
const val constraintLayout = "2.1.4"
const val recyclerView = "1.1.0"
const val room = "2.4.3"
const val room = "2.6.1"
const val dagger = "2.52"
const val viewpager2 = "1.0.0"
const val flexBox = "3.0.0"
Expand All @@ -36,7 +36,7 @@ object Versions {
const val compose_icons = "1.6.1"
const val wear_compose_tooling_preview = "1.0.0"
const val horologist = "0.2.7"
const val compose_kotlin_compiler = "1.4.8"
const val compose_kotlin_compiler = "1.5.15"
const val compose_hilt = "1.0.0"
const val wear_complications = "1.2.1"
const val wear_ongoing = "1.0.0"
Expand All @@ -45,6 +45,6 @@ object Versions {
const val junit = "4.13"
const val junitUi = "1.1.4"
const val espresso = "3.5.0"
const val mockito = "5.2.0"
const val mockito = "5.14.2"
const val coroutinesTest = "1.7.1"
}
1 change: 0 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,5 +42,4 @@ dependencies {

testImplementation(Deps.Test.junit)
testImplementation(Deps.Test.mockito)
testImplementation(Deps.Test.mockitoInline)
}
5 changes: 2 additions & 3 deletions domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ plugins {
}

java {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

dependencies {
Expand All @@ -18,5 +18,4 @@ dependencies {

testImplementation(Deps.Test.junit)
testImplementation(Deps.Test.mockito)
testImplementation(Deps.Test.mockitoInline)
}
6 changes: 3 additions & 3 deletions gradle/android_library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
jvmTarget = JavaVersion.VERSION_21.toString()
}

buildFeatures {
Expand Down
6 changes: 3 additions & 3 deletions gradle/android_wear_library.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@ android {
}

compileOptions {
sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
sourceCompatibility = JavaVersion.VERSION_21
targetCompatibility = JavaVersion.VERSION_21
}

kotlinOptions {
jvmTarget = JavaVersion.VERSION_17.toString()
jvmTarget = JavaVersion.VERSION_21.toString()
}

buildFeatures {
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 @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip

0 comments on commit 8a8144b

Please sign in to comment.