1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- plugins {
- id("otel.library-instrumentation")
- id("org.graalvm.buildtools.native")
- }
- dependencies {
- compileOnly(project(":muzzle"))
- // pin the version strictly to avoid overriding by dependencyManagement versions
- compileOnly("ch.qos.logback:logback-classic") {
- version {
- // compiling against newer version than the earliest supported version (1.0.0) to support
- // features added in 1.3.0
- strictly("1.3.0")
- }
- }
- compileOnly("org.slf4j:slf4j-api") {
- version {
- strictly("2.0.0")
- }
- }
- if (findProperty("testLatestDeps") as Boolean) {
- testImplementation("ch.qos.logback:logback-classic:+")
- } else {
- testImplementation("ch.qos.logback:logback-classic") {
- version {
- strictly("1.0.0")
- }
- }
- testImplementation("org.slf4j:slf4j-api") {
- version {
- strictly("1.6.4")
- }
- }
- }
- testImplementation("io.opentelemetry:opentelemetry-sdk-testing")
- }
- graalvmNative {
- binaries.all {
- resources.autodetect()
- }
- toolchainDetection.set(false)
- }
- // To be able to execute the tests as GraalVM native executables
- configurations.configureEach {
- exclude("org.apache.groovy", "groovy")
- exclude("org.apache.groovy", "groovy-json")
- exclude("org.spockframework", "spock-core")
- }
- val latestDepTest = findProperty("testLatestDeps") as Boolean
- testing {
- suites {
- val slf4j2ApiTest by registering(JvmTestSuite::class) {
- dependencies {
- implementation(project(":instrumentation:logback:logback-appender-1.0:library"))
- implementation("io.opentelemetry:opentelemetry-sdk-testing")
- if (latestDepTest) {
- implementation("ch.qos.logback:logback-classic:+")
- implementation("org.slf4j:slf4j-api:+")
- } else {
- implementation("ch.qos.logback:logback-classic") {
- version {
- strictly("1.3.0")
- }
- }
- implementation("org.slf4j:slf4j-api") {
- version {
- strictly("2.0.0")
- }
- }
- }
- }
- }
- }
- }
- tasks {
- check {
- dependsOn(testing.suites)
- }
- }
|