diff --git a/affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt b/affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt index 570ec0d..8d34d2b 100644 --- a/affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt +++ b/affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt @@ -60,7 +60,7 @@ class AffectedModuleDetectorIntegrationTest { | } | dependencies { | classpath "com.android.tools.build:gradle:8.6.1" - | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0" + | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10" | } |} |plugins { @@ -152,7 +152,7 @@ class AffectedModuleDetectorIntegrationTest { | } | dependencies { | classpath "com.android.tools.build:gradle:8.6.1" - | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0" + | classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10" | } |} |plugins { diff --git a/build.gradle b/build.gradle index 035b13e..c26a029 100644 --- a/build.gradle +++ b/build.gradle @@ -1,6 +1,6 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = "2.2.0" + ext.kotlin_version = "2.2.10" repositories { google() mavenCentral() diff --git a/sample/buildSrc/build.gradle.kts b/sample/buildSrc/build.gradle.kts index f684350..275dbe8 100644 --- a/sample/buildSrc/build.gradle.kts +++ b/sample/buildSrc/build.gradle.kts @@ -2,7 +2,7 @@ * Copyright (c) 2020, Dropbox, Inc. All rights reserved. */ plugins { - kotlin("jvm") version "2.2.0" + kotlin("jvm") version "2.2.10" `java-gradle-plugin` } diff --git a/sample/buildSrc/src/main/kotlin/com/dropbox/sample/Dependencies.kt b/sample/buildSrc/src/main/kotlin/com/dropbox/sample/Dependencies.kt index 7fae42f..9fc058c 100644 --- a/sample/buildSrc/src/main/kotlin/com/dropbox/sample/Dependencies.kt +++ b/sample/buildSrc/src/main/kotlin/com/dropbox/sample/Dependencies.kt @@ -3,7 +3,7 @@ package com.dropbox.sample object Dependencies { private object Versions { - const val KOTLIN_VERSION = "2.2.0" + const val KOTLIN_VERSION = "2.2.10" const val DETEKT_VERSION = "1.23.8" }