Skip to content

Commit

Permalink
Added additional Kotlin standard libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed May 9, 2024
1 parent 2118c61 commit 6db8a9c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions src/bld/java/net/thauvin/erik/MobibotBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,9 @@ public MobibotBuild() {
.include(dependency("com.google.cloud", "google-cloud-vertexai", "1.3.0"))
// Kotlin
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-common", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk7", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
.include(dependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.8.0"))
.include(dependency("org.jetbrains.kotlinx", "kotlinx-cli-jvm", "0.3.6"))
// Logging
Expand Down
4 changes: 2 additions & 2 deletions src/main/kotlin/net/thauvin/erik/mobibot/ReleaseInfo.kt
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,12 @@ import java.time.ZoneId
*/
object ReleaseInfo {
const val PROJECT = "mobibot"
const val VERSION = "0.8.0-rc+20240417230232"
const val VERSION = "0.8.0-rc+20240509074831"

@JvmField
@Suppress("MagicNumber")
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
Instant.ofEpochMilli(1713420152538L), ZoneId.systemDefault()
Instant.ofEpochMilli(1715266111851L), ZoneId.systemDefault()
)

const val WEBSITE = "https://mobitopia.org/mobibot/"
Expand Down

0 comments on commit 6db8a9c

Please sign in to comment.