File tree Expand file tree Collapse file tree 3 files changed +12
-13
lines changed
Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 11import com.github.benmanes.gradle.versions.updates.DependencyUpdatesTask
22import io.gitlab.arturbosch.detekt.Detekt
3+ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
34
45@Suppress(" DSL_SCOPE_VIOLATION" ) // IntelliJ incorrectly marks libs as not callable
56plugins {
@@ -36,7 +37,7 @@ ktlint {
3637
3738detekt {
3839 ignoreFailures = true
39- config = rootProject.files(" config/detekt/detekt.yml" )
40+ config.setFrom( rootProject.files(" config/detekt/detekt.yml" ) )
4041}
4142
4243tasks.withType<Detekt >().configureEach {
@@ -50,8 +51,6 @@ versionCatalogUpdate {
5051 sortByKey.set(true )
5152 keep {
5253 keepUnusedVersions.set(false )
53- keepUnusedLibraries.set(false )
54- keepUnusedPlugins.set(false )
5554 }
5655}
5756
@@ -63,8 +62,8 @@ tasks.withType<DependencyUpdatesTask> {
6362}
6463
6564tasks.withType< org.jetbrains.kotlin.gradle.tasks.KotlinCompile > {
66- kotlinOptions {
67- jvmTarget = " 1.8 "
65+ compilerOptions {
66+ jvmTarget.set( JvmTarget . JVM_1_8 )
6867 }
6968}
7069
Original file line number Diff line number Diff line change 11[versions ]
2- aws = " 2.26.31 "
3- detekt = " 1.23.6 "
4- kotlin = " 2.0.10 "
5- ktlint-gradle = " 12 .1.1 "
6- plugin-publish = " 1.2.1 "
7- version-catalog-update = " 0.8.4 "
8- version-check = " 0.51 .0"
2+ aws = " 2.34.0 "
3+ detekt = " 1.23.8 "
4+ kotlin = " 2.2.21 "
5+ ktlint-gradle = " 13 .1.0 "
6+ plugin-publish = " 2.0.0 "
7+ version-catalog-update = " 1.0.1 "
8+ version-check = " 0.53 .0"
99versioning = " 3.1.0"
1010
1111[libraries ]
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\ ://services.gradle.org/distributions/gradle-8.9 -all.zip
3+ distributionUrl =https://services.gradle.org/distributions/gradle-9.1.0 -all.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments