diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 4ffdca3..7bc6c57 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -2,7 +2,6 @@ name: CI
on:
pull_request:
- branches: [main]
push:
branches: [main]
diff --git a/README.md b/README.md
index 90d4e99..0714091 100644
--- a/README.md
+++ b/README.md
@@ -23,7 +23,7 @@ Add the below dependency to the project's POM:
com.factset.sdk.eventdriven
factsettrading
- 2.0.1
+ 2.0.2
```
@@ -37,7 +37,7 @@ repositories {
}
dependencies {
- implementation "com.factset.sdk.eventdriven:factsettrading:2.0.1"
+ implementation "com.factset.sdk.eventdriven:factsettrading:2.0.2"
}
```
diff --git a/build.gradle.kts b/build.gradle.kts
index 18a446a..29a533b 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -8,7 +8,7 @@ plugins {
}
group = "com.factset.sdk.eventdriven"
-version = "2.0.1"
+version = "2.0.2"
java {
withJavadocJar()
@@ -21,26 +21,28 @@ repositories {
dependencies {
implementation("com.factset.sdk:utils:1.+")
- implementation("com.fasterxml.jackson.core:jackson-core:2.15.3")
- implementation("com.fasterxml.jackson.core:jackson-annotations:2.17.0")
- implementation("com.fasterxml.jackson.core:jackson-databind:2.15.3")
- implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.17.0")
+ implementation("com.fasterxml.jackson.core:jackson-core:2.20.0")
+ implementation("com.fasterxml.jackson.core:jackson-annotations:2.20")
+ implementation("com.fasterxml.jackson.core:jackson-databind:2.20.0")
+ implementation("com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.20.0")
implementation("com.squareup.okhttp3:okhttp:4.12.0")
- implementation("org.slf4j:slf4j-api:2.0.9")
- testRuntimeOnly("org.slf4j:slf4j-simple:2.0.9")
+ implementation("org.slf4j:slf4j-api:2.0.17")
+ testRuntimeOnly("org.slf4j:slf4j-simple:2.0.17")
testImplementation("org.mockito:mockito-inline:4.11.0")
- testImplementation(platform("org.junit:junit-bom:5.10.2"))
- testImplementation("org.junit.jupiter:junit-jupiter:5.10.2")
-
- compileOnly("org.projectlombok:lombok:1.18.30")
- annotationProcessor("org.projectlombok:lombok:1.18.30")
- testCompileOnly("org.projectlombok:lombok:1.18.30")
- testAnnotationProcessor("org.projectlombok:lombok:1.18.30")
+ 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")
+
+ 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.test {
+ jvmArgs("-Dnet.bytebuddy.experimental=true")
useJUnitPlatform()
}
@@ -142,6 +144,8 @@ configure {
active.set(org.jreleaser.model.Active.RELEASE)
url = "https://central.sonatype.com/api/v1/publisher"
stagingRepository(releasesRepoUrl.get().asFile.path)
+ retryDelay = 30
+ maxRetries = 100
}
}
nexus2 {