Skip to content

Commit 445dd3d

Browse files
authored
Merge pull request #32 from zhensherlock/next
chore: update dependencies
2 parents ab9265e + a379a9c commit 445dd3d

File tree

4 files changed

+22
-16
lines changed

4 files changed

+22
-16
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ jobs:
114114

115115
# Run Qodana inspections
116116
- name: Qodana - Code Inspection
117-
uses: JetBrains/qodana-action@v2022.3.4
117+
uses: JetBrains/qodana-action@v2023.3.1
118118

119119
# Prepare plugin archive content for creating artifact
120120
- name: Prepare Plugin Artifact

build.gradle.kts

+13-9
Original file line numberDiff line numberDiff line change
@@ -51,17 +51,21 @@ changelog {
5151
}
5252

5353
// Configure Gradle Qodana Plugin - read more: https://github.com/JetBrains/gradle-qodana-plugin
54-
qodana {
55-
cachePath = provider { file(".qodana").canonicalPath }
56-
reportPath = provider { file("build/reports/inspections").canonicalPath }
57-
saveReport = true
58-
showReport = environment("QODANA_SHOW_REPORT").map { it.toBoolean() }.getOrElse(false)
59-
}
54+
//qodana {
55+
// cachePath = provider { file(".qodana").canonicalPath }
56+
// reportPath = provider { file("build/reports/inspections").canonicalPath }
57+
// saveReport = true
58+
// showReport = environment("QODANA_SHOW_REPORT").map { it.toBoolean() }.getOrElse(false)
59+
//}
6060

6161
// Configure Gradle Kover Plugin - read more: https://github.com/Kotlin/kotlinx-kover#configuration
62-
kover.xmlReport {
63-
onCheck = true
64-
}
62+
//koverReport {
63+
// defaults {
64+
// xml {
65+
// onCheck = true
66+
// }
67+
// }
68+
//}
6569

6670
tasks {
6771
wrapper {

gradle/libs.versions.toml

+6-6
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
annotations = "24.0.1"
44

55
# plugins
6-
dokka = "1.8.10"
7-
kotlin = "1.8.20"
8-
changelog = "2.0.0"
9-
gradleIntelliJPlugin = "1.13.3"
10-
qodana = "0.1.13"
11-
kover = "0.6.1"
6+
dokka = "1.9.10"
7+
kotlin = "1.9.23"
8+
changelog = "2.2.0"
9+
gradleIntelliJPlugin = "1.17.2"
10+
qodana = "2023.3.1"
11+
kover = "0.7.6"
1212

1313
[libraries]
1414
annotations = { group = "org.jetbrains", name = "annotations", version.ref = "annotations" }

qodana.yml

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
# https://www.jetbrains.com/help/qodana/qodana-yaml.html
33

44
version: 1.0
5+
linter: jetbrains/qodana-jvm-community:latest
6+
projectJDK: "17"
57
profile:
68
name: qodana.recommended
79
exclude:

0 commit comments

Comments
 (0)