5 Commits

Author SHA1 Message Date
af37fd67bf build: bump com.google.code.gson:gson from 2.11.0 to 2.12.0
Bumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.11.0 to 2.12.0.
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)
- [Commits](https://github.com/google/gson/compare/gson-parent-2.11.0...gson-parent-2.12.0)

---
updated-dependencies:
- dependency-name: com.google.code.gson:gson
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-01-30 14:34:58 +00:00
3bbb439d86 build: bump jvm from 2.1.0 to 2.1.10 (#46)
All checks were successful
Build & test the project / build (11) (push) Successful in 25m22s
Build & test the project / build (17) (push) Successful in 25m19s
Build & test the project / build (21) (push) Successful in 24m51s
Build & test the project / build (8) (push) Successful in 24m56s
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2025-01-27 15:34:59 +01:00
c6a8325eba build: bump org.jetbrains.dokka from 1.9.20 to 2.0.0 (#45)
All checks were successful
Build & test the project / build (17) (push) Successful in 25m36s
Build & test the project / build (11) (push) Successful in 25m47s
Build & test the project / build (21) (push) Successful in 25m0s
Build & test the project / build (8) (push) Successful in 25m8s
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-12-22 01:26:46 +01:00
0c38358bc4 build: bump jvm from 2.0.21 to 2.1.0 (#44)
All checks were successful
Build & test the project / build (11) (push) Successful in 25m1s
Build & test the project / build (17) (push) Successful in 25m8s
Build & test the project / build (21) (push) Successful in 24m57s
Build & test the project / build (8) (push) Successful in 24m54s
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-11-28 00:37:31 +01:00
150acada74 build: bump jvm from 2.0.20 to 2.0.21 (#43)
All checks were successful
Build & test the project / build (17) (push) Successful in 25m27s
Build & test the project / build (11) (push) Successful in 25m33s
Build & test the project / build (21) (push) Successful in 24m57s
Build & test the project / build (8) (push) Successful in 25m8s
2024-10-13 19:38:00 +02:00

View File

@ -2,8 +2,8 @@ import org.jetbrains.kotlin.gradle.dsl.JvmTarget
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
kotlin("jvm") version "2.0.20"
id("org.jetbrains.dokka") version "1.9.20"
kotlin("jvm") version "2.1.10"
id("org.jetbrains.dokka") version "2.0.0"
// Apply the java-library plugin for API and implementation separation.
`java-library`
@ -49,7 +49,7 @@ dependencies {
// Use the Kotlin JDK 8 standard library.
implementation(kotlin("stdlib-jdk8"))
// Gson
implementation("com.google.code.gson:gson:2.11.0")
implementation("com.google.code.gson:gson:2.12.0")
testImplementation(kotlin("test"))
}