DEV Community

Query Filter
Query Filter

Posted on

docker-146

dependencies {
    // 1. FORCE Spring Beans to stay on 4.3.26.RELEASE for this compilation unit
    implementation('org.springframework:spring-beans:4.3.26.RELEASE') {
        version { strictly '4.3.26.RELEASE' }
    }

    // 2. FORCE JWS packages to stay isolated without transient dependency upgrades
    implementation('jakarta.jws:jakarta.jws-api:3.0.0') { transitive = false }
    compileOnly('jakarta.jws:jakarta.jws-api:3.0.0') { transitive = false }

    // 3. FORCE the standalone JAX-WS API bundle that contains javax.xml.ws.Service
    implementation('javax.xml.ws:jaxws-api:2.3.1') { transitive = false }
    compileOnly('javax.xml.ws:jaxws-api:2.3.1') { transitive = false }

    // Your platform BOM
    implementation platform(group: 'com.citi.157514.comet', name: 'comet-bom', version: '9.4.0e_b1') {
        exclude group: 'org.mockito'
        exclude group: 'org.junit.jupiter'
        exclude group: 'junit'
    }

    implementation(group: 'com.citi.156783.comet', name: 'CC_CPLSFW', version: '9.4.0e_b8')
    implementation(group: 'com.citi.158825', name: 'emmaserver', version: '2.0_D0')
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)