15 lines
426 B
Groovy
15 lines
426 B
Groovy
// The shadowJar of this project will be injected into the JVM's bootstrap classloader
|
|
plugins {
|
|
id "com.github.johnrengelman.shadow"
|
|
}
|
|
|
|
apply from: "${rootDir}/gradle/java.gradle"
|
|
|
|
dependencies {
|
|
compile project(':trace-api')
|
|
compile deps.opentelemetryApi
|
|
compile deps.slf4j
|
|
compile group: 'org.slf4j', name: 'slf4j-simple', version: versions.slf4j
|
|
// ^ Generally a bad idea for libraries, but we're shadowing.
|
|
}
|