Skip to content

Commit 3466c0f

Browse files
chore: update versions to latest (#27)
1 parent 34c7cfc commit 3466c0f

File tree

5 files changed

+22
-37
lines changed

5 files changed

+22
-37
lines changed

grpc-client-rx-utils/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ plugins {
66
}
77

88
dependencies {
9-
api(platform("io.grpc:grpc-bom:1.43.1"))
10-
api("io.reactivex.rxjava3:rxjava:3.1.3")
9+
api(platform("io.grpc:grpc-bom:1.45.1"))
10+
api("io.reactivex.rxjava3:rxjava:3.1.4")
1111
api("io.grpc:grpc-stub")
1212
api(project(":grpc-context-utils"))
1313
implementation("io.grpc:grpc-context")
1414

1515
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
16-
testImplementation("org.mockito:mockito-core:4.2.0")
17-
testImplementation("org.mockito:mockito-junit-jupiter:4.2.0")
16+
testImplementation("org.mockito:mockito-core:4.4.0")
17+
testImplementation("org.mockito:mockito-junit-jupiter:4.4.0")
1818
}
1919

2020
tasks.test {

grpc-client-utils/build.gradle.kts

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ plugins {
66
}
77

88
dependencies {
9-
api(platform("io.grpc:grpc-bom:1.43.1"))
9+
api(platform("io.grpc:grpc-bom:1.45.1"))
1010
api("io.grpc:grpc-context")
1111
api("io.grpc:grpc-api")
1212

1313
implementation(project(":grpc-context-utils"))
14-
implementation("org.slf4j:slf4j-api:1.7.32")
14+
implementation("org.slf4j:slf4j-api:1.7.36")
1515

1616
annotationProcessor("org.projectlombok:lombok:1.18.22")
1717
compileOnly("org.projectlombok:lombok:1.18.22")
1818

1919
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
20-
testImplementation("org.mockito:mockito-core:4.2.0")
21-
testImplementation("org.mockito:mockito-inline:4.2.0")
20+
testImplementation("org.mockito:mockito-core:4.4.0")
21+
testImplementation("org.mockito:mockito-inline:4.4.0")
2222
testRuntimeOnly("io.grpc:grpc-netty")
2323
}
2424

grpc-context-utils/build.gradle.kts

+6-21
Original file line numberDiff line numberDiff line change
@@ -10,29 +10,14 @@ tasks.test {
1010
}
1111

1212
dependencies {
13-
api(platform("io.grpc:grpc-bom:1.43.1"))
13+
api(platform("io.grpc:grpc-bom:1.45.1"))
1414
implementation("io.grpc:grpc-core")
1515

16-
implementation("com.auth0:java-jwt:3.18.2")
17-
implementation("com.auth0:jwks-rsa:0.20.0")
18-
implementation("com.google.guava:guava:31.0.1-jre")
19-
implementation("org.slf4j:slf4j-api:1.7.32")
20-
21-
constraints {
22-
api("com.fasterxml.jackson.core:jackson-databind:2.13.1") {
23-
because("https://snyk.io/vuln/SNYK-JAVA-COMFASTERXMLJACKSONCORE-232")
24-
}
25-
api("io.netty:netty-codec-http2:4.1.68.Final") {
26-
because("Multiple vulnerabilities")
27-
}
28-
api("io.netty:netty-handler-proxy:4.1.71.Final"){
29-
because("Multiple vulnerabilities")
30-
}
31-
api("com.google.code.gson:gson:2.8.9"){
32-
because("https://snyk.io/vuln/SNYK-JAVA-COMGOOGLECODEGSON-1730327")
33-
}
34-
}
16+
implementation("com.auth0:java-jwt:3.19.1")
17+
implementation("com.auth0:jwks-rsa:0.21.1")
18+
implementation("com.google.guava:guava:31.1-jre")
19+
implementation("org.slf4j:slf4j-api:1.7.36")
3520

3621
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
37-
testImplementation("org.mockito:mockito-core:4.2.0")
22+
testImplementation("org.mockito:mockito-core:4.4.0")
3823
}

grpc-server-rx-utils/build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ plugins {
66
}
77

88
dependencies {
9-
api(platform("io.grpc:grpc-bom:1.43.1"))
10-
api("io.reactivex.rxjava3:rxjava:3.1.3")
9+
api(platform("io.grpc:grpc-bom:1.45.1"))
10+
api("io.reactivex.rxjava3:rxjava:3.1.4")
1111
api("io.grpc:grpc-stub")
1212

1313
annotationProcessor("org.projectlombok:lombok:1.18.22")
1414
compileOnly("org.projectlombok:lombok:1.18.22")
1515

16-
implementation("org.slf4j:slf4j-api:1.7.32")
16+
implementation("org.slf4j:slf4j-api:1.7.36")
1717

1818
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
19-
testImplementation("org.mockito:mockito-core:4.2.0")
20-
testImplementation("org.mockito:mockito-junit-jupiter:4.2.0")
19+
testImplementation("org.mockito:mockito-core:4.4.0")
20+
testImplementation("org.mockito:mockito-junit-jupiter:4.4.0")
2121
}
2222

2323
tasks.test {

grpc-server-utils/build.gradle.kts

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ tasks.test {
1010
}
1111

1212
dependencies {
13-
api(platform("io.grpc:grpc-bom:1.43.1"))
13+
api(platform("io.grpc:grpc-bom:1.45.1"))
1414
api("io.grpc:grpc-context")
1515
api("io.grpc:grpc-api")
1616

1717
implementation(project(":grpc-context-utils"))
18-
implementation("org.slf4j:slf4j-api:1.7.32")
18+
implementation("org.slf4j:slf4j-api:1.7.36")
1919

2020
annotationProcessor("org.projectlombok:lombok:1.18.22")
2121
compileOnly("org.projectlombok:lombok:1.18.22")
2222

2323
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
24-
testImplementation("org.mockito:mockito-core:4.2.0")
24+
testImplementation("org.mockito:mockito-core:4.4.0")
2525
}

0 commit comments

Comments
 (0)