-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlibs.versions.toml
More file actions
34 lines (25 loc) · 1.57 KB
/
Copy pathlibs.versions.toml
File metadata and controls
34 lines (25 loc) · 1.57 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[versions]
# Kotlin
kotlin = "2.3.21" # https://github.com/JetBrains/kotlin/
# Testing - JUnit6
junit-bom = "6.1.0" # https://junit.org/junit5/
junit-legacy = "4.13.2" # https://junit.org/junit4/
# KtLint
ktlint-core = "1.8.0" # https://github.com/ktlint/ktlint
# Gradle plugins
ktlint-gradle = "14.2.0" # https://github.com/JLLeitschuh/ktlint-gradle
intellij-platform = "2.16.0" # https://github.com/JetBrains/intellij-platform-gradle-plugin
# IDE versions
sinceBuildIdea = "213.7172" # https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
verificationIdea = "2023.2.7" # https://plugins.jetbrains.com/docs/intellij/plugin-compatibility.html
jvmTarget = "21" # https://docs.oracle.com/en/java/javase/21/
[libraries]
junit-bom = { group = "org.junit", name = "junit-bom", version.ref = "junit-bom" }
junit-jupiter-params = { group = "org.junit.jupiter", name = "junit-jupiter-params", version.ref = "junit-bom" }
junit-jupiter-engine = { group = "org.junit.jupiter", name = "junit-jupiter-engine", version.ref = "junit-bom" }
junit-platform-launcher = { group = "org.junit.platform", name = "junit-platform-launcher", version.ref = "junit-bom" }
junit-legacy = { group = "junit", name = "junit", version.ref = "junit-legacy" }
[plugins]
kotlin-jvm = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
ktlint-gradle-plugin = { id = "org.jlleitschuh.gradle.ktlint", version.ref = "ktlint-gradle" }
intellij-platform = { id = "org.jetbrains.intellij.platform", version.ref = "intellij-platform" }