mirror of
https://github.com/TermoraDev/termora.git
synced 2026-01-15 18:02:58 +08:00
15 lines
268 B
Kotlin
15 lines
268 B
Kotlin
plugins {
|
|
alias(libs.plugins.kotlin.jvm)
|
|
}
|
|
|
|
project.version = "0.0.1"
|
|
|
|
dependencies {
|
|
testImplementation(kotlin("test"))
|
|
compileOnly(project(":"))
|
|
implementation("com.maxmind.geoip2:geoip2:4.3.1")
|
|
}
|
|
|
|
apply(from = "$rootDir/plugins/common.gradle.kts")
|
|
|