plugins { id("otel.javaagent-instrumentation") } muzzle { pass { group.set("io.awspring.cloud") module.set("spring-cloud-aws-sqs") versions.set("[3.0.0,)") assertInverse.set(true) } } dependencies { // current latest release 3.3.0-M1 has parent that is from central because of that we can't use // library here and have to use compileOnly + testImplementation to avoid resolving the broken // version compileOnly("io.awspring.cloud:spring-cloud-aws-starter-sqs:3.0.0") implementation(project(":instrumentation:aws-sdk:aws-sdk-2.2:library")) testInstrumentation(project(":instrumentation:aws-sdk:aws-sdk-2.2:javaagent")) testImplementation("org.elasticmq:elasticmq-rest-sqs_2.13") testImplementation("io.awspring.cloud:spring-cloud-aws-starter-sqs:3.0.0") testLibrary("org.springframework.boot:spring-boot-starter-test:3.0.0") testLibrary("org.springframework.boot:spring-boot-starter-web:3.0.0") } otelJava { minJavaVersionSupported.set(JavaVersion.VERSION_17) }