diff --git a/README.md b/README.md index 85b7c7a..230bb58 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Add the below dependency to the project's POM: com.factset.sdk utils - 1.1.4 + 1.1.5 ``` @@ -32,7 +32,7 @@ repositories { } dependencies { - implementation "com.factset.sdk:utils:1.1.4" + implementation "com.factset.sdk:utils:1.1.5" } ``` diff --git a/build.gradle b/build.gradle index 1bb8d1f..654f411 100644 --- a/build.gradle +++ b/build.gradle @@ -13,28 +13,30 @@ repositories { mavenCentral() } -group 'com.factset.sdk' -version '1.1.4' +group = 'com.factset.sdk' +version = '1.1.5' dependencies { - implementation 'org.slf4j:slf4j-api:1.7.36' - implementation 'com.nimbusds:nimbus-jose-jwt:10.3' - implementation 'org.json:json:20250107' - implementation 'com.nimbusds:oauth2-oidc-sdk:11.23' - - testImplementation 'org.mockito:mockito-core:4.9.0' - testImplementation 'org.junit.jupiter:junit-jupiter-api:5.10.2' - testImplementation 'ch.qos.logback:logback-classic:1.2.11' - testImplementation "com.github.tomakehurst:wiremock-jre8-standalone:2.35.0" - testImplementation "org.assertj:assertj-core:3.26.0" - testImplementation "org.hamcrest:hamcrest:2.2" - testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.10.2' - testRuntimeOnly 'ch.qos.logback:logback-core:1.2.11' - - compileOnly 'org.projectlombok:lombok:1.18.38' - annotationProcessor 'org.projectlombok:lombok:1.18.38' - testCompileOnly 'org.projectlombok:lombok:1.18.38' - testAnnotationProcessor 'org.projectlombok:lombok:1.18.38' + implementation('org.slf4j:slf4j-api:1.7.36') + implementation('com.nimbusds:nimbus-jose-jwt:10.5') + implementation('org.json:json:20250517') + implementation('com.nimbusds:oauth2-oidc-sdk:11.29.1') + + testImplementation(platform('org.junit:junit-bom:5.13.4')) + testImplementation('org.junit.jupiter:junit-jupiter:5.13.4') + testRuntimeOnly('org.junit.platform:junit-platform-launcher:1.9.3') + + testImplementation('org.mockito:mockito-core:4.11.0') + testImplementation('ch.qos.logback:logback-classic:1.3.15') + testImplementation('com.github.tomakehurst:wiremock-jre8-standalone:2.35.2') + testImplementation('org.assertj:assertj-core:3.27.6') + testImplementation('org.hamcrest:hamcrest:2.2') + testRuntimeOnly('ch.qos.logback:logback-core:1.3.15') + + compileOnly('org.projectlombok:lombok:1.18.42') + annotationProcessor('org.projectlombok:lombok:1.18.42') + testCompileOnly('org.projectlombok:lombok:1.18.42') + testAnnotationProcessor('org.projectlombok:lombok:1.18.42') } tasks.register('sourcesJar', Jar) { @@ -150,6 +152,8 @@ jreleaser { active = 'RELEASE' url = "https://central.sonatype.com/api/v1/publisher" stagingRepository artifactStagingDirectory.get().asFile.path + retryDelay = 30 + maxRetries = 100 } return } diff --git a/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java b/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java index 13a10c2..174b6c4 100644 --- a/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java +++ b/src/main/java/com/factset/sdk/utils/authentication/RequestOptions.java @@ -21,5 +21,5 @@ public class RequestOptions { SSLSocketFactory sslSocketFactory = HttpsURLConnection.getDefaultSSLSocketFactory(); @Builder.Default - String userAgent = "fds-sdk/java/utils/1.1.4 (" + System.getProperty("os.name") + "; Java" + System.getProperty("java.version") + ")"; + String userAgent = "fds-sdk/java/utils/1.1.5 (" + System.getProperty("os.name") + "; Java" + System.getProperty("java.version") + ")"; }