DEV Community

Query Filter
Query Filter

Posted on

docker115

dependencies {
    // We only need the API for compilation, so we can use 'compileOnly' 
    // and exclude the runtime that pulls in missing glassfish/jaxb artifacts
    implementation('javax.xml.ws:jaxws-api:2.3.1') {
        exclude group: 'com.sun.xml.ws', module: 'jaxws-rt'
        exclude group: 'org.glassfish.jaxb', module: 'jaxb-runtime'
    }

    implementation 'javax.annotation:javax.annotation-api:1.3.2'
}
Enter fullscreen mode Exit fullscreen mode

Top comments (0)