Skip to content

Commit

Permalink
Libs(Java): bump deps to match 7.x generator
Browse files Browse the repository at this point in the history
Also adds logging for `gradle test` so we can see which tests are
running.

We still need to add tests to verify the nullable stuff works (and to
confirm we no longer need to patch the json serializer ourselves).
  • Loading branch information
svix-onelson committed Oct 11, 2024
1 parent fe4aa78 commit 719a981
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions java/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'

Check warning on line 32 in java/build.gradle

View workflow job for this annotation

GitHub Actions / Check for typos

"ws" should be "was".

Check warning on line 32 in java/build.gradle

View workflow job for this annotation

GitHub Actions / Check for typos

"ws" should be "was".
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'
}
Expand All @@ -52,4 +54,10 @@ javadoc {
excludes = [ "com/svix/**/*" ]
}

apply from: "deploy.gradle"
apply from: "deploy.gradle"

test {
testLogging {
events "passed", "skipped", "failed"
}
}

0 comments on commit 719a981

Please sign in to comment.