Initial commit

This commit is contained in:
Ben Martin 2025-04-24 12:54:20 +01:00
commit 641bc16087
No known key found for this signature in database
GPG key ID: 11936493893207E4
19 changed files with 838 additions and 0 deletions

28
gradle/libs.versions.toml Normal file
View file

@ -0,0 +1,28 @@
[versions]
# libraries
junit = "4.13.2"
opentest4j = "1.3.0"
okhttp = "4.12.0"
kotlinxSerializationJson = "1.8.1"
# plugins
changelog = "2.2.1"
intelliJPlatform = "2.5.0"
kotlin = "2.1.20"
kotlinxSerialization = "2.1.20"
kover = "0.9.1"
qodana = "2024.3.4"
[libraries]
junit = { group = "junit", name = "junit", version.ref = "junit" }
opentest4j = { group = "org.opentest4j", name = "opentest4j", version.ref = "opentest4j" }
okhttp = { group = "com.squareup.okhttp3", name = "okhttp", version.ref = "okhttp" }
kotlinxSerializationJson = { group = "org.jetbrains.kotlinx", name = "kotlinx-serialization-json", version.ref = "kotlinxSerializationJson" }
[plugins]
changelog = { id = "org.jetbrains.changelog", version.ref = "changelog" }
intelliJPlatform = { id = "org.jetbrains.intellij.platform", version.ref = "intelliJPlatform" }
kotlin = { id = "org.jetbrains.kotlin.jvm", version.ref = "kotlin" }
kotlinxSerialization = { id = "org.jetbrains.kotlin.plugin.serialization", version.ref = "kotlinxSerialization" }
kover = { id = "org.jetbrains.kotlinx.kover", version.ref = "kover" }
qodana = { id = "org.jetbrains.qodana", version.ref = "qodana" }