Skip to content

Commit

Permalink
Upgraded Kotlin to 2.0.20, KSP to 2.0.20-1.0.25, and worked around au…
Browse files Browse the repository at this point in the history
…tonomousapps/dependency-analysis-gradle-plugin#1239 by ignoring the integration test source set.
  • Loading branch information
ianbrandt committed Oct 2, 2024
1 parent ded8cf6 commit 8221750
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,11 @@ configure<DependencyAnalysisSubExtension> {
excludeSourceSets(testSuiteName)
}
}
issues {
// Ignore test source set to work around
// https://github.com/autonomousapps/dependency-analysis-gradle-plugin/issues/1239.
ignoreSourceSet(testSuiteName)
}
}

kotlin {
Expand Down
4 changes: 2 additions & 2 deletions gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@ junit = "5.11.1"
jvm-dependency-conflict-resolution = "2.1.2"
koin = "3.5.6"
kotest = "5.9.1"
kotlin = "2.0.10" # Must match KSP version below.
kotlin = "2.0.20" # Must match KSP version below.
kotlinpoet = "1.18.1"
kotlinx-coroutines = "1.9.0"
kotlinx-dl = "0.5.2"
ksp = "2.0.10-1.0.24" # Must match Kotlin version above.
ksp = "2.0.20-1.0.25" # Must match Kotlin version above.
mockito = "5.13.0"
mockito-kotlin = "2.2.0"
mockk = "1.13.12"
Expand Down

0 comments on commit 8221750

Please sign in to comment.