Skip to content

Commit 0888eef

Browse files
Kotlin 2.2.10 Upgrade (#310)
1 parent 19e00fc commit 0888eef

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

affectedmoduledetector/src/test/kotlin/com/dropbox/affectedmoduledetector/AffectedModuleDetectorIntegrationTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ class AffectedModuleDetectorIntegrationTest {
6060
| }
6161
| dependencies {
6262
| classpath "com.android.tools.build:gradle:8.6.1"
63-
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0"
63+
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10"
6464
| }
6565
|}
6666
|plugins {
@@ -152,7 +152,7 @@ class AffectedModuleDetectorIntegrationTest {
152152
| }
153153
| dependencies {
154154
| classpath "com.android.tools.build:gradle:8.6.1"
155-
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.0"
155+
| classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:2.2.10"
156156
| }
157157
|}
158158
|plugins {

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3-
ext.kotlin_version = "2.2.0"
3+
ext.kotlin_version = "2.2.10"
44
repositories {
55
google()
66
mavenCentral()

sample/buildSrc/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
* Copyright (c) 2020, Dropbox, Inc. All rights reserved.
33
*/
44
plugins {
5-
kotlin("jvm") version "2.2.0"
5+
kotlin("jvm") version "2.2.10"
66
`java-gradle-plugin`
77
}
88

sample/buildSrc/src/main/kotlin/com/dropbox/sample/Dependencies.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package com.dropbox.sample
33
object Dependencies {
44

55
private object Versions {
6-
const val KOTLIN_VERSION = "2.2.0"
6+
const val KOTLIN_VERSION = "2.2.10"
77
const val DETEKT_VERSION = "1.23.8"
88
}
99

0 commit comments

Comments
 (0)