Bumped to Kotlin 1.9.22
This commit is contained in:
parent
356f62990d
commit
c684332b9d
3 changed files with 7 additions and 7 deletions
|
@ -22,7 +22,7 @@ object {{v className/}} {
|
|||
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_URL = "https://erik.thauvin.net/"
|
||||
}
|
||||
|
|
|
@ -71,7 +71,7 @@ public class MobibotBuild extends Project {
|
|||
);
|
||||
|
||||
var log4j = version(2, 22, 0);
|
||||
var kotlin = version(1, 9, 21);
|
||||
var kotlin = version(1, 9, 22);
|
||||
scope(compile)
|
||||
// PircBotX
|
||||
.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"))
|
||||
// Google
|
||||
.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)))
|
||||
// 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"));
|
||||
scope(test)
|
||||
.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.platform", "junit-platform-console-standalone", version(1, 10, 1)));
|
||||
|
||||
|
|
|
@ -14,15 +14,15 @@ import java.time.ZoneId
|
|||
*/
|
||||
object ReleaseInfo {
|
||||
const val PROJECT = "mobibot"
|
||||
const val VERSION = "0.8.0-rc+20231218140603"
|
||||
const val VERSION = "0.8.0-rc+20231224114859"
|
||||
|
||||
@JvmField
|
||||
@Suppress("MagicNumber")
|
||||
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_URL = "https://erik.thauvin.net/"
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue