Files
corda/opentelemetry/opentelemetry-driver/build.gradle
Lucas Siqueira 42bef59e8a ENT-13047: rebase with 4.13 (#7943)
Rebase changes from 4.13
2025-06-19 17:13:59 +01:00

32 lines
547 B
Groovy

plugins {
id 'org.jetbrains.kotlin.jvm'
id 'java-library'
id 'com.github.johnrengelman.shadow'
id 'corda.common-publishing'
}
description 'OpenTelemetry Driver'
dependencies {
implementation project(":opentelemetry")
}
shadowJar {
archiveClassifier = null
exclude "**/Log4j2Plugins.dat"
zip64 true
}
jar {
enabled = true
}
publishing {
publications {
shadow(MavenPublication) { publication ->
artifactId 'corda-opentelemetry-driver'
artifact shadowJar
}
}
}