diff --git a/java/build.gradle b/java/build.gradle index 882d9ab12..12074f3f3 100644 --- a/java/build.gradle +++ b/java/build.gradle @@ -23,13 +23,15 @@ sourceSets { } dependencies { - implementation 'io.swagger:swagger-annotations:1.5.24' + implementation 'io.swagger:swagger-annotations:1.6.8' implementation "com.google.code.findbugs:jsr305:3.0.2" - implementation 'com.squareup.okhttp3:okhttp:4.9.1' - implementation 'com.squareup.okhttp3:logging-interceptor:4.9.1' - implementation 'com.google.code.gson:gson:2.8.6' - implementation 'io.gsonfire:gson-fire:1.8.4' - implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.10' + implementation 'com.squareup.okhttp3:okhttp:4.12.0' + implementation 'com.squareup.okhttp3:logging-interceptor:4.12.0' + implementation 'com.google.code.gson:gson:2.9.1' + implementation 'io.gsonfire:gson-fire:1.9.0' + implementation 'jakarta.ws.rs:jakarta.ws.rs-api:2.1.6' + implementation 'org.openapitools:jackson-databind-nullable:0.2.6' + implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.12.0' implementation 'javax.annotation:javax.annotation-api:1.3.2' testImplementation 'junit:junit:4.13.1' } @@ -52,4 +54,10 @@ javadoc { excludes = [ "com/svix/**/*" ] } -apply from: "deploy.gradle" \ No newline at end of file +apply from: "deploy.gradle" + +test { + testLogging { + events "passed", "skipped", "failed" + } +} \ No newline at end of file