mirror of
https://github.com/corda/corda.git
synced 2024-12-19 04:57:58 +00:00
33 lines
581 B
Groovy
33 lines
581 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 = false
|
|
}
|
|
|
|
publishing {
|
|
publications {
|
|
shadow(MavenPublication) { publication ->
|
|
artifactId 'corda-opentelemetry-driver'
|
|
artifact shadowJar
|
|
from components.java
|
|
}
|
|
}
|
|
}
|