30 lines
783 B
Plaintext
30 lines
783 B
Plaintext
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
|
|
|
|
plugins {
|
|
id("otel.library-instrumentation")
|
|
|
|
id("org.jetbrains.kotlin.jvm")
|
|
}
|
|
|
|
dependencies {
|
|
library("io.ktor:ktor-server-core:1.0.0")
|
|
|
|
implementation("io.opentelemetry:opentelemetry-extension-kotlin")
|
|
|
|
compileOnly("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
// Note, we do not have a :testing library yet because there doesn't seem to be a way to have the Kotlin classes
|
|
// available for use from Spock. We will first need to migrate HttpServerTest to be usable outside of Spock.
|
|
testLibrary("io.ktor:ktor-server-netty:1.0.0")
|
|
}
|
|
|
|
tasks {
|
|
withType(KotlinCompile::class).configureEach {
|
|
kotlinOptions {
|
|
jvmTarget = "1.8"
|
|
}
|
|
}
|
|
}
|