Remove Kover configuration, dependencies, and related workflow steps.

This commit is contained in:
Jakub Chrzanowski
2026-04-13 16:55:01 +02:00
parent a82d9d01c6
commit d7e12a963c
4 changed files with 3 additions and 23 deletions

View File

@@ -118,13 +118,6 @@ jobs:
name: tests-result
path: ${{ github.workspace }}/build/reports/tests
# Upload the Kover report to CodeCov
- name: Upload Code Coverage Report
uses: codecov/codecov-action@v5
with:
files: ${{ github.workspace }}/build/reports/kover/report.xml
token: ${{ secrets.CODECOV_TOKEN }}
# Run plugin structure verification along with IntelliJ Plugin Verifier
verify:
name: Verify plugin

View File

@@ -16,6 +16,7 @@
- Remove `opentest4j` dependency from `build.gradle.kts` and `libs.versions.toml`, redundant since IntelliJ Platform 251+
- Remove `gradleVersion` property and wrapper configuration as Gradle Wrapper should be updated with `./gradlew wrapper --gradle-version=9.4.1 && ./gradlew wrapper`
- Remove Qodana configuration, dependencies, and related workflow steps.
- Remove Kover configuration, dependencies, and related workflow steps.
- Remove redundant Kotlin JVM toolchain configuration from `build.gradle.kts`
- Remove redundant `intellijPlatform.pluginConfiguration.ideaVersion.sinceBuild` configuration from `build.gradle.kts`
- Remove redundant `pluginSinceBuild` property from `gradle.properties`
@@ -23,8 +24,8 @@
- Remove redundant `intellijPlatform.publishing.token` configuration from `build.gradle.kts`
- Remove redundant `intellijPlatform.pluginVerification` configuration from `build.gradle.kts`
- Remove redundant `java` plugin declaration from `build.gradle.kts`
- Remove redundant `pluginVersion` configuration from `build.gradle.kts`.
- Remove redundant `pluginName` property from `gradle.properties` and `build.gradle.kts` as it is already set in the `plugin.xml`
- Remove `pluginVersion` configuration from `build.gradle.kts`.
- Remove `pluginName` property from `gradle.properties` and `build.gradle.kts` as it is already set in the `plugin.xml`
## [2.4.1] - 2026-03-20

View File

@@ -6,7 +6,6 @@ plugins {
alias(libs.plugins.kotlin) // Kotlin support
alias(libs.plugins.intelliJPlatform) // IntelliJ Platform Gradle Plugin
alias(libs.plugins.changelog) // Gradle Changelog Plugin
alias(libs.plugins.kover) // Gradle Kover Plugin
}
// Dependencies are managed with Gradle version catalog - read more: https://docs.gradle.org/current/userguide/version_catalogs.html
@@ -75,17 +74,6 @@ changelog {
versionPrefix = ""
}
// Configure Gradle Kover Plugin - read more: https://kotlin.github.io/kotlinx-kover/gradle-plugin/#configuration-details
kover {
reports {
total {
xml {
onCheck = true
}
}
}
}
tasks {
publishPlugin {
dependsOn(patchChangelog)

View File

@@ -5,7 +5,6 @@ junit = "4.13.2"
# plugins
changelog = "2.5.0"
kotlin = "2.3.20"
kover = "0.9.7"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
@@ -14,4 +13,3 @@ junit = { group = "junit", name = "junit", version.ref = "junit" }
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
intelliJPlatform = { id = "org.jetbrains.intellij.platform" }
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }