63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
			
		
		
	
	
			63 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
 | 
						|
 | 
						|
plugins {
 | 
						|
  id("otel.java-conventions")
 | 
						|
  id("otel.publish-conventions")
 | 
						|
 | 
						|
  id("otel.jmh-conventions")
 | 
						|
  id("org.jetbrains.kotlin.jvm")
 | 
						|
  id("otel.animalsniffer-conventions")
 | 
						|
}
 | 
						|
 | 
						|
description = "OpenTelemetry Kotlin Extensions"
 | 
						|
otelJava.moduleName.set("io.opentelemetry.extension.kotlin")
 | 
						|
 | 
						|
dependencies {
 | 
						|
  implementation(platform("org.jetbrains.kotlin:kotlin-bom"))
 | 
						|
 | 
						|
  api(project(":api:all"))
 | 
						|
 | 
						|
  compileOnly("org.jetbrains.kotlin:kotlin-stdlib-common")
 | 
						|
  compileOnly("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
 | 
						|
 | 
						|
  testImplementation(project(":sdk:testing"))
 | 
						|
  testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
 | 
						|
  testImplementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
 | 
						|
}
 | 
						|
 | 
						|
testing {
 | 
						|
  suites {
 | 
						|
    val testStrictContext by registering(JvmTestSuite::class) {
 | 
						|
      dependencies {
 | 
						|
        implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
 | 
						|
        implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2")
 | 
						|
      }
 | 
						|
 | 
						|
      targets {
 | 
						|
        all {
 | 
						|
          testTask.configure {
 | 
						|
            jvmArgs("-Dio.opentelemetry.context.enableStrictContext=true")
 | 
						|
          }
 | 
						|
        }
 | 
						|
      }
 | 
						|
    }
 | 
						|
  }
 | 
						|
}
 | 
						|
 | 
						|
tasks {
 | 
						|
  withType(KotlinCompile::class) {
 | 
						|
    kotlinOptions {
 | 
						|
      jvmTarget = "1.8"
 | 
						|
    }
 | 
						|
  }
 | 
						|
 | 
						|
  // We don't have any public Java classes
 | 
						|
  named("javadoc") {
 | 
						|
    enabled = false
 | 
						|
  }
 | 
						|
 | 
						|
  check {
 | 
						|
    dependsOn(testing.suites)
 | 
						|
  }
 | 
						|
}
 |