Bumped depencendies (common-codec, org.json)
This commit is contained in:
parent
6da6783395
commit
69c18841bc
3 changed files with 6 additions and 5 deletions
2
.vscode/settings.json
vendored
2
.vscode/settings.json
vendored
|
@ -8,7 +8,9 @@
|
||||||
"java.configuration.updateBuildConfiguration": "automatic",
|
"java.configuration.updateBuildConfiguration": "automatic",
|
||||||
"java.project.referencedLibraries": [
|
"java.project.referencedLibraries": [
|
||||||
"${HOME}/.bld/dist/bld-1.8.0.jar",
|
"${HOME}/.bld/dist/bld-1.8.0.jar",
|
||||||
|
"lib/bld/*.jar",
|
||||||
"lib/compile/*.jar",
|
"lib/compile/*.jar",
|
||||||
|
"lib/provided/*.jar",
|
||||||
"lib/runtime/*.jar",
|
"lib/runtime/*.jar",
|
||||||
"lib/test/*.jar"
|
"lib/test/*.jar"
|
||||||
]
|
]
|
||||||
|
|
|
@ -80,14 +80,13 @@ public class MobibotBuild extends Project {
|
||||||
// Commons (mostly for PircBotX)
|
// Commons (mostly for PircBotX)
|
||||||
.include(dependency("org.apache.commons", "commons-lang3", "3.14.0"))
|
.include(dependency("org.apache.commons", "commons-lang3", "3.14.0"))
|
||||||
.include(dependency("org.apache.commons", "commons-text", "1.11.0"))
|
.include(dependency("org.apache.commons", "commons-text", "1.11.0"))
|
||||||
.include(dependency("commons-codec", "commons-codec", "1.16.0"))
|
.include(dependency("commons-codec", "commons-codec", "1.16.1"))
|
||||||
.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", "33.0.0-jre"))
|
.include(dependency("com.google.guava", "guava", "33.0.0-jre"))
|
||||||
.include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 3, 0)))
|
.include(dependency("com.google.cloud", "google-cloud-vertexai", version(0, 3, 0)))
|
||||||
// Kotlin
|
// Kotlin
|
||||||
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
|
|
||||||
.include(dependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.7.3"))
|
.include(dependency("org.jetbrains.kotlinx", "kotlinx-coroutines-core", "1.7.3"))
|
||||||
.include(dependency("org.jetbrains.kotlinx", "kotlinx-cli-jvm", "0.3.6"))
|
.include(dependency("org.jetbrains.kotlinx", "kotlinx-cli-jvm", "0.3.6"))
|
||||||
// Logging
|
// Logging
|
||||||
|
@ -100,7 +99,7 @@ public class MobibotBuild extends Project {
|
||||||
.include(dependency("com.squareup.okhttp3", "okhttp", "4.12.0"))
|
.include(dependency("com.squareup.okhttp3", "okhttp", "4.12.0"))
|
||||||
.include(dependency("net.aksingh", "owm-japis", "2.5.3.0"))
|
.include(dependency("net.aksingh", "owm-japis", "2.5.3.0"))
|
||||||
.include(dependency("net.objecthunter", "exp4j", "0.4.8"))
|
.include(dependency("net.objecthunter", "exp4j", "0.4.8"))
|
||||||
.include(dependency("org.json", "json", "20231013"))
|
.include(dependency("org.json", "json", "20240205"))
|
||||||
.include(dependency("org.jsoup", "jsoup", "1.17.2"))
|
.include(dependency("org.jsoup", "jsoup", "1.17.2"))
|
||||||
// Thauvin
|
// Thauvin
|
||||||
.include(dependency("net.thauvin.erik", "cryptoprice", "1.0.3-SNAPSHOT"))
|
.include(dependency("net.thauvin.erik", "cryptoprice", "1.0.3-SNAPSHOT"))
|
||||||
|
|
|
@ -14,12 +14,12 @@ import java.time.ZoneId
|
||||||
*/
|
*/
|
||||||
object ReleaseInfo {
|
object ReleaseInfo {
|
||||||
const val PROJECT = "mobibot"
|
const val PROJECT = "mobibot"
|
||||||
const val VERSION = "0.8.0-rc+20240116102134"
|
const val VERSION = "0.8.0-rc+20240209010856"
|
||||||
|
|
||||||
@JvmField
|
@JvmField
|
||||||
@Suppress("MagicNumber")
|
@Suppress("MagicNumber")
|
||||||
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
|
val BUILD_DATE: LocalDateTime = LocalDateTime.ofInstant(
|
||||||
Instant.ofEpochMilli(1705429295075L), ZoneId.systemDefault()
|
Instant.ofEpochMilli(1707469736725L), ZoneId.systemDefault()
|
||||||
)
|
)
|
||||||
|
|
||||||
const val WEBSITE = "https://mobitopia.org/mobibot/"
|
const val WEBSITE = "https://mobitopia.org/mobibot/"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue