15 lines
459 B
Groovy
15 lines
459 B
Groovy
group = 'io.opentelemetry.instrumentation'
|
|
|
|
apply plugin: "otel.java-conventions"
|
|
apply from: "$rootDir/gradle/publish.gradle"
|
|
|
|
sourceCompatibility = '8'
|
|
|
|
dependencies {
|
|
api group: "org.springframework.boot", name: "spring-boot-starter", version: versions["org.springframework.boot"]
|
|
api project(':instrumentation:spring:starters:spring-starter')
|
|
api "io.opentelemetry:opentelemetry-exporter-otlp"
|
|
implementation "io.grpc:grpc-netty-shaded:1.30.2"
|
|
}
|
|
|