1 Commits

Author SHA1 Message Date
2bdd18fb47 build: bump gson from 2.9.0 to 2.10.1
Bumps [gson](https://github.com/google/gson) from 2.9.0 to 2.10.1.
- [Release notes](https://github.com/google/gson/releases)
- [Changelog](https://github.com/google/gson/blob/master/CHANGELOG.md)
- [Commits](https://github.com/google/gson/compare/gson-parent-2.9.0...gson-parent-2.10.1)

---
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>
2023-01-09 14:12:41 +00:00

View File

@ -1,7 +1,7 @@
plugins {
// Apply the org.jetbrains.kotlin.jvm Plugin to add support for Kotlin.
kotlin("jvm") version "1.6.21"
id("org.jetbrains.dokka") version "1.8.10"
id("org.jetbrains.dokka") version "1.6.21"
// Apply the java-library plugin for API and implementation separation.
`java-library`
@ -21,7 +21,7 @@ dependencies {
// Use the Kotlin JDK 8 standard library.
implementation(kotlin("stdlib-jdk8"))
// Gson
implementation("com.google.code.gson:gson:2.9.0")
implementation("com.google.code.gson:gson:2.10.1")
testImplementation(kotlin("test"))
}