plugins { application java id("com.google.cloud.tools.jib") } base { archivesBaseName = "backend-webflux" } application { mainClassName = "com.softwareaws.xray.examples.webflux.WebfluxApplication" } dependencies { implementation("io.lettuce:lettuce-core") implementation("org.springframework.boot:spring-boot-starter-webflux") } jib { to { image = "public.ecr.aws/o2z1k4j2/aws-otel-playground:backend-webflux" } from { image = "public.ecr.aws/u0d6r4y4/aws-opentelemetry-java-base:alpha" } container { environment = mapOf("OTEL_RESOURCE_ATTRIBUTES" to "service.name=WebfluxBackend") } }