1234567891011121314151617181920 |
- plugins {
- id("otel.java-conventions")
- id("org.springframework.boot") version "2.7.18"
- }
- description = "smoke-tests-otel-starter-spring-boot-common"
- dependencies {
- // spring dependencies are compile only to enable testing against different versions of spring
- compileOnly(platform(org.springframework.boot.gradle.plugin.SpringBootPlugin.BOM_COORDINATES))
- compileOnly("org.springframework.boot:spring-boot-starter-web")
- compileOnly("org.springframework.boot:spring-boot-starter-test")
- compileOnly("org.springframework.boot:spring-boot-starter-data-jdbc")
- compileOnly("org.apache.commons:commons-dbcp2")
- api(project(":smoke-tests-otel-starter:spring-smoke-testing"))
- implementation("io.opentelemetry:opentelemetry-extension-trace-propagators")
- implementation(project(":instrumentation:spring:starters:spring-boot-starter"))
- }
|