Bumped to Kotlin 1.9.22

This commit is contained in:
Erik C. Thauvin 2023-12-24 12:11:11 -08:00
parent 356f62990d
commit c684332b9d
3 changed files with 7 additions and 7 deletions

View file

@ -22,7 +22,7 @@ object {{v className/}} {
Instant.ofEpochMilli({{v epoch/}}L), ZoneId.systemDefault() Instant.ofEpochMilli({{v epoch/}}L), ZoneId.systemDefault()
) )
const val WEBSITE = "https://www.mobitopia.org/mobibot/" const val WEBSITE = "https://mobitopia.org/mobibot/"
const val AUTHOR = "Erik C. Thauvin" const val AUTHOR = "Erik C. Thauvin"
const val AUTHOR_URL = "https://erik.thauvin.net/" const val AUTHOR_URL = "https://erik.thauvin.net/"
} }

View file

@ -71,7 +71,7 @@ public class MobibotBuild extends Project {
); );
var log4j = version(2, 22, 0); var log4j = version(2, 22, 0);
var kotlin = version(1, 9, 21); var kotlin = version(1, 9, 22);
scope(compile) scope(compile)
// PircBotX // PircBotX
.include(dependency("com.github.pircbotx", "pircbotx", "2.3.1")) .include(dependency("com.github.pircbotx", "pircbotx", "2.3.1"))
@ -82,7 +82,7 @@ public class MobibotBuild extends Project {
.include(dependency("commons-net", "commons-net", "3.10.0")) .include(dependency("commons-net", "commons-net", "3.10.0"))
// Google // Google
.include(dependency("com.google.code.gson", "gson", "2.10.1")) .include(dependency("com.google.code.gson", "gson", "2.10.1"))
.include(dependency("com.google.guava", "guava", "32.1.3-jre")) .include(dependency("com.google.guava", "guava", "33.0.0-jre"))
.include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 1, 0))) .include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 1, 0)))
// Kotlin // Kotlin
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
@ -109,7 +109,7 @@ public class MobibotBuild extends Project {
.include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", "1.4.0")); .include(dependency("net.thauvin.erik.urlencoder", "urlencoder-lib-jvm", "1.4.0"));
scope(test) scope(test)
.include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 0))) .include(dependency("com.willowtreeapps.assertk", "assertk-jvm", version(0, 28, 0)))
.include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", version(1, 9, 21))) .include(dependency("org.jetbrains.kotlin", "kotlin-test-junit5", kotlin))
.include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1))) .include(dependency("org.junit.jupiter", "junit-jupiter", version(5, 10, 1)))
.include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1))); .include(dependency("org.junit.platform", "junit-platform-console-standalone", version(1, 10, 1)));

View file

@ -14,15 +14,15 @@ import java.time.ZoneId
*/ */
object ReleaseInfo { object ReleaseInfo {
const val PROJECT = "mobibot" const val PROJECT = "mobibot"
const val VERSION = "0.8.0-rc+20231218140603" const val VERSION = "0.8.0-rc+20231224114859"
@JvmField @JvmField
@Suppress("MagicNumber") @Suppress("MagicNumber")
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant( val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
Instant.ofEpochMilli(1702937164085L), ZoneId.systemDefault() Instant.ofEpochMilli(1703447340121L), ZoneId.systemDefault()
) )
const val WEBSITE = "https://www.mobitopia.org/mobibot/" const val WEBSITE = "https://mobitopia.org/mobibot/"
const val AUTHOR = "Erik C. Thauvin" const val AUTHOR = "Erik C. Thauvin"
const val AUTHOR_URL = "https://erik.thauvin.net/" const val AUTHOR_URL = "https://erik.thauvin.net/"
} }