Skip to content
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
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -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()
Expand Down
2 changes: 1 addition & 1 deletion sample/buildSrc/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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`
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}

Expand Down