mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
Bumps com.github.hstyi:geolite2 from v1.0-202507280101 to v1.0-202508040102. --- updated-dependencies: - dependency-name: com.github.hstyi:geolite2 dependency-version: v1.0-202508040102 dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
17 lines
375 B
Kotlin
17 lines
375 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
project.version = "0.0.8"
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
implementation("com.maxmind.geoip2:geoip2:4.3.1")
|
|
// https://github.com/hstyi/geolite2
|
|
implementation("com.github.hstyi:geolite2:v1.0-202508040102")
|
|
}
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|
|
|