37 lines
1003 B
Plaintext
37 lines
1003 B
Plaintext
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
|
|
import org.jetbrains.kotlin.gradle.dsl.KotlinVersion
|
|
|
|
plugins {
|
|
id("otel.library-instrumentation")
|
|
|
|
id("org.jetbrains.kotlin.jvm")
|
|
}
|
|
|
|
dependencies {
|
|
library("io.ktor:ktor-server-core:1.0.0")
|
|
|
|
implementation(project(":instrumentation:ktor:ktor-common:library"))
|
|
implementation("io.opentelemetry:opentelemetry-extension-kotlin")
|
|
|
|
compileOnly("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
|
|
|
|
testLibrary("io.ktor:ktor-server-netty:1.0.0")
|
|
|
|
latestDepTestLibrary("io.ktor:ktor-server-core:1.+") // see ktor-2.0 module
|
|
latestDepTestLibrary("io.ktor:ktor-server-netty:1.+") // see ktor-2.0 module
|
|
}
|
|
|
|
kotlin {
|
|
compilerOptions {
|
|
jvmTarget.set(JvmTarget.JVM_1_8)
|
|
@Suppress("deprecation")
|
|
languageVersion.set(KotlinVersion.KOTLIN_1_6)
|
|
}
|
|
}
|
|
|
|
tasks.withType<Test>().configureEach {
|
|
jvmArgs("-Dotel.instrumentation.common.experimental.controller-telemetry.enabled=true")
|
|
}
|