Skip to content

Commit 7fd8218

Browse files
committed
build: clean up Gradle version catalog
1 parent fcd4af5 commit 7fd8218

2 files changed

Lines changed: 16 additions & 16 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ fun stringProperty(key: String, default: String? = null): String =
1212

1313
plugins {
1414
java
15-
alias(libs.plugins.kotlin.jvm)
16-
alias(libs.plugins.jetbrains.intellij.platform)
17-
alias(libs.plugins.jetbrains.grammarkit)
15+
alias(libs.plugins.kotlin)
16+
alias(libs.plugins.intellijPlatform)
17+
alias(libs.plugins.grammarkit)
1818
}
1919

2020
group = "com.github.lppedd"
@@ -46,12 +46,12 @@ dependencies {
4646
pluginVerifier()
4747
}
4848

49-
implementation(libs.commons.validator) {
49+
implementation(libs.commonsValidator) {
5050
exclude("commons-beanutils", "commons-beanutils")
5151
}
5252

53-
implementation(libs.json.jettison)
54-
implementation(libs.json.skema)
53+
implementation(libs.jettison)
54+
implementation(libs.jsonSkema)
5555

5656
// TODO: move to catalog if it is really needed
5757
testImplementation("junit:junit:4.13.2")

gradle/libs.versions.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[versions]
22
kotlin = "2.3.0"
3-
intellij-platform = "2.10.5"
3+
intellijPlatform = "2.10.5"
44
grammarkit = "2022.3.2.2"
5-
json-jettison = "1.5.4"
6-
json-skema = "0.28.0"
7-
commons-validator = "1.10.1"
5+
jettison = "1.5.4"
6+
jsonSkema = "0.28.0"
7+
commonsValidator = "1.10.1"
88

99
[libraries]
10-
json-jettison = { group = "org.codehaus.jettison", name = "jettison", version.ref = "json-jettison" }
11-
json-skema = { group = "com.github.erosb", name = "json-sKema", version.ref = "json-skema" }
12-
commons-validator = { group = "commons-validator", name = "commons-validator", version.ref = "commons-validator" }
10+
jettison = { group = "org.codehaus.jettison", name = "jettison", version.ref = "jettison" }
11+
jsonSkema = { group = "com.github.erosb", name = "json-sKema", version.ref = "jsonSkema" }
12+
commonsValidator = { group = "commons-validator", name = "commons-validator", version.ref = "commonsValidator" }
1313

1414
[plugins]
15-
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
16-
jetbrains-intellij-platform = { id = "org.jetbrains.intellij.platform", version.ref = "intellij-platform" }
17-
jetbrains-grammarkit = { id = "org.jetbrains.grammarkit", version.ref = "grammarkit" }
15+
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
16+
intellijPlatform = { id = "org.jetbrains.intellij.platform", version.ref = "intellijPlatform" }
17+
grammarkit = { id = "org.jetbrains.grammarkit", version.ref = "grammarkit" }

0 commit comments

Comments
 (0)