Skip to content

Commit

Permalink
feat(dependencies/javax): add javax for jdk11+
Browse files Browse the repository at this point in the history
  • Loading branch information
halibobo1205 committed Oct 31, 2024
1 parent 333d25c commit 01dcb60
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,24 @@ subprojects {
testCompileOnly 'org.projectlombok:lombok:1.18.12'
testAnnotationProcessor 'org.projectlombok:lombok:1.18.12'

// https://www.oracle.com/java/technologies/javase/11-relnote-issues.html#JDK-8190378
implementation group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
implementation group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'
implementation group: 'javax.jws', name: 'javax.jws-api', version: '1.1'
implementation group: 'javax.activation', name: 'activation', version: '1.1.1'
implementation group: 'javax.resource', name: 'javax.resource-api', version: '1.7.1'
implementation group: 'javax.validation', name: 'validation-api', version: '2.0.1.Final'
implementation group: 'javax.ws.rs', name: 'javax.ws.rs-api', version: '2.1.1'
implementation group: 'javax.ejb', name: 'ejb-api', version: '3.0'
implementation group: 'javax.enterprise.concurrent', name: 'javax.enterprise.concurrent-api', version: '1.1'
implementation group: 'javax.money', name: 'money-api', version: '1.1'
implementation group: 'javax.enterprise', name: 'cdi-api', version: '1.2'
implementation group: 'javax.portlet', name: 'portlet-api', version: '3.0.1'
implementation group: 'javax.xml.ws', name: 'jaxws-api', version: '2.3.1'
implementation group: 'javax.xml.rpc', name: 'javax.xml.rpc-api', version: '1.1.2'
annotationProcessor group: 'javax.xml.bind', name: 'jaxb-api', version: '2.3.1'
annotationProcessor group: 'javax.annotation', name: 'javax.annotation-api', version: '1.3.2'

testImplementation group: 'junit', name: 'junit', version: '4.13.2'
testImplementation "org.mockito:mockito-core:3.10.0"
testImplementation group: 'org.powermock', name: 'powermock-module-junit4', version: '2.0.9'
Expand Down

0 comments on commit 01dcb60

Please sign in to comment.