diff --git a/.gitignore b/.gitignore index e2e5d94..8aa6151 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ .idea .qodana build +.kotlin diff --git a/build.gradle.kts b/build.gradle.kts index 525f824..5d99d5a 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -58,10 +58,12 @@ qodana { } // Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration -koverReport { - defaults { - xml { - onCheck = true +kover { + reports { + total { + xml { + onCheck = true + } } } } diff --git a/gradle.properties b/gradle.properties index 3f639fe..6aeb1ed 100644 --- a/gradle.properties +++ b/gradle.properties @@ -32,3 +32,5 @@ org.gradle.caching = true # Enable Gradle Kotlin DSL Lazy Property Assignment -> https://docs.gradle.org/current/userguide/kotlin_dsl.html#kotdsl:assignment systemProp.org.gradle.unsafe.kotlin.assignment = true + +kotlin.daemon.jvmargs=-Xmx1g diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 79824c7..74e33e6 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -3,11 +3,11 @@ annotations = "24.1.0" # plugins -kotlin = "1.9.24" +kotlin = "2.0.0" changelog = "2.2.0" gradleIntelliJPlugin = "1.17.3" qodana = "0.1.13" -kover = "0.8.0" +kover = "0.8.1" [libraries] annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }