35 lines
835 B
Plaintext
35 lines
835 B
Plaintext
plugins {
|
|
kotlin("jvm") version "1.7.20"
|
|
kotlin("plugin.serialization") version "1.7.20"
|
|
}
|
|
|
|
group = "openproximitychat.muellerssoftware.org"
|
|
version = "unspecified"
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
// KTOR
|
|
implementation("io.ktor:ktor-server-core-jvm:2.1.3")
|
|
implementation("io.ktor:ktor-server-netty-jvm:2.1.3")
|
|
implementation("io.ktor:ktor-network:2.1.3")
|
|
implementation("io.ktor:ktor-network-tls:2.1.3")
|
|
|
|
// UPnP
|
|
implementation("org.bitlet:weupnp:0.1.4")
|
|
|
|
// Serialization
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-core:1.4.1")
|
|
implementation("org.jetbrains.kotlinx:kotlinx-serialization-protobuf:1.4.1")
|
|
|
|
// Logging
|
|
implementation("org.slf4j:slf4j-api:2.0.5")
|
|
}
|
|
|
|
tasks {
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "17"
|
|
}
|
|
} |