Skip to content

Commit

Permalink
chore(deps): update all dependencies
Browse files Browse the repository at this point in the history
| datasource     | package                                                               | from   | to     |
| -------------- | --------------------------------------------------------------------- | ------ | ------ |
| gradle-version | gradle                                                                | 8.4    | 8.5    |
| maven          | io.mockk:mockk                                                        | 1.13.8 | 1.13.9 |
| maven          | io.insert-koin:koin-test                                              | 3.5.0  | 3.5.3  |
| maven          | io.insert-koin:koin-test-junit4                                       | 3.5.0  | 3.5.3  |
| maven          | io.insert-koin:koin-android                                           | 3.5.0  | 3.5.3  |
| maven          | io.insert-koin:koin-core                                              | 3.5.0  | 3.5.3  |
| maven          | com.squareup.leakcanary:leakcanary-android                            | 2.12   | 2.13   |
| maven          | com.google.android.material:material                                  | 1.10.0 | 1.11.0 |
| maven          | com.github.ben-manes:gradle-versions-plugin                           | 0.46.0 | 0.50.0 |
| maven          | dev.drewhamilton.poko:poko-gradle-plugin                              | 0.15.0 | 0.15.2 |
| maven          | com.diffplug.spotless:spotless-plugin-gradle                          | 6.22.0 | 6.23.3 |
| maven          | com.android.tools.build:gradle                                        | 8.1.3  | 8.2.1  |
| maven          | com.diffplug.spotless:com.diffplug.spotless.gradle.plugin             | 6.22.0 | 6.23.3 |
| maven          | org.jetbrains.kotlinx.kover:org.jetbrains.kotlinx.kover.gradle.plugin | 0.7.3  | 0.7.5  |
| maven          | org.jetbrains.kotlin:kotlin-gradle-plugin                             | 1.9.20 | 1.9.22 |
| maven          | org.jetbrains.kotlin:kotlin-test-junit                                | 1.9.20 | 1.9.22 |
  • Loading branch information
renovate[bot] authored Jan 7, 2024
1 parent 9b14a9a commit 2ce2571
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 13 deletions.
12 changes: 6 additions & 6 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
// Top-level build file where you can add configuration options common to all sub-projects/modules.

plugins {
id("org.jetbrains.kotlinx.kover") version "0.7.3" apply false
id("com.diffplug.spotless") version "6.22.0" apply false
id("org.jetbrains.kotlinx.kover") version "0.7.5" apply false
id("com.diffplug.spotless") version "6.23.3" apply false
}

buildscript {
Expand All @@ -19,11 +19,11 @@ buildscript {
maven(url = "https://oss.sonatype.org/content/repositories/snapshots")
}
dependencies {
classpath("com.android.tools.build:gradle:8.1.3")
classpath("com.android.tools.build:gradle:8.2.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlinVersion")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.22.0")
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.0")
classpath("com.github.ben-manes:gradle-versions-plugin:0.46.0")
classpath("com.diffplug.spotless:spotless-plugin-gradle:6.23.3")
classpath("dev.drewhamilton.poko:poko-gradle-plugin:0.15.2")
classpath("com.github.ben-manes:gradle-versions-plugin:0.50.0")
}
}

Expand Down
2 changes: 1 addition & 1 deletion buildSrc/gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
10 changes: 5 additions & 5 deletions buildSrc/src/main/kotlin/deps.kt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import org.gradle.plugin.use.PluginDependenciesSpec
import org.gradle.plugin.use.PluginDependencySpec

const val ktlintVersion = "1.0.0"
const val kotlinVersion = "1.9.20"
const val kotlinVersion = "1.9.22"

object appConfig {
const val applicationId = "com.hoc.flowmvi"
Expand All @@ -31,7 +31,7 @@ object deps {
const val constraintLayout = "androidx.constraintlayout:constraintlayout:2.1.4"
const val recyclerView = "androidx.recyclerview:recyclerview:1.3.2"
const val swipeRefreshLayout = "androidx.swiperefreshlayout:swiperefreshlayout:1.2.0-alpha01"
const val material = "com.google.android.material:material:1.10.0"
const val material = "com.google.android.material:material:1.11.0"
const val startup = "androidx.startup:startup-runtime:1.1.1"
}

Expand All @@ -48,7 +48,7 @@ object deps {
const val converterMoshi = "com.squareup.retrofit2:converter-moshi:2.9.0"
const val loggingInterceptor = "com.squareup.okhttp3:logging-interceptor:4.12.0"
const val moshiKotlin = "com.squareup.moshi:moshi-kotlin:1.15.0"
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.12"
const val leakCanary = "com.squareup.leakcanary:leakcanary-android:2.13"
}

object coroutines {
Expand All @@ -60,7 +60,7 @@ object deps {
}

object koin {
private const val version = "3.5.0"
private const val version = "3.5.3"

const val core = "io.insert-koin:koin-core:$version"
const val android = "io.insert-koin:koin-android:$version"
Expand Down Expand Up @@ -90,7 +90,7 @@ object deps {
}
}

const val mockk = "io.mockk:mockk:1.13.8"
const val mockk = "io.mockk:mockk:1.13.9"
const val kotlinJUnit = "org.jetbrains.kotlin:kotlin-test-junit:$kotlinVersion"
}
}
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit 2ce2571

Please sign in to comment.