34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
plugins {
|
|
id("otel.java-conventions")
|
|
alias(springBoot2.plugins.versions)
|
|
}
|
|
|
|
description = "smoke-tests-otel-starter-spring-boot-reactive-2"
|
|
|
|
dependencies {
|
|
implementation(project(":instrumentation:spring:starters:spring-boot-starter"))
|
|
implementation(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
|
|
|
|
implementation(project(":smoke-tests-otel-starter:spring-boot-reactive-common"))
|
|
implementation("org.springframework.boot:spring-boot-starter-webflux")
|
|
implementation("org.springframework.boot:spring-boot-starter-data-r2dbc")
|
|
|
|
runtimeOnly("com.h2database:h2")
|
|
runtimeOnly("io.r2dbc:r2dbc-h2")
|
|
|
|
testImplementation("org.springframework.boot:spring-boot-starter-test")
|
|
testImplementation("io.projectreactor:reactor-test")
|
|
}
|
|
|
|
springBoot {
|
|
mainClass = "io.opentelemetry.spring.smoketest.OtelReactiveSpringStarterSmokeTestApplication"
|
|
}
|
|
|
|
configurations.configureEach {
|
|
resolutionStrategy {
|
|
// our dependency management pins to a version that is not compatible with spring boot 2.7
|
|
force("ch.qos.logback:logback-classic:1.2.13")
|
|
force("org.slf4j:slf4j-api:1.7.36")
|
|
}
|
|
}
|