|
1 | 1 | plugins { |
2 | | - `java-library` |
3 | | - jacoco |
4 | | - id("org.hypertrace.publish-plugin") |
5 | | - id("org.hypertrace.jacoco-report-plugin") |
| 2 | + `java-library` |
| 3 | + jacoco |
| 4 | + id("org.hypertrace.publish-plugin") |
| 5 | + id("org.hypertrace.jacoco-report-plugin") |
6 | 6 | } |
7 | 7 |
|
8 | 8 | tasks.test { |
9 | | - useJUnitPlatform() |
| 9 | + useJUnitPlatform() |
10 | 10 | } |
11 | 11 |
|
12 | 12 | dependencies { |
13 | | - api(project(":kafka-streams-serdes")) |
14 | | - api("com.typesafe:config:1.4.1") |
15 | | - api("org.apache.kafka:kafka-streams:6.0.1-ccs") |
16 | | - api("io.confluent:kafka-streams-avro-serde:6.0.1") |
| 13 | + api(project(":kafka-streams-serdes")) |
| 14 | + api("com.typesafe:config:1.4.1") |
| 15 | + api("org.apache.kafka:kafka-streams:6.0.1-ccs") |
| 16 | + api("io.confluent:kafka-streams-avro-serde:6.0.1") |
17 | 17 |
|
18 | | - implementation("com.google.guava:guava:30.1-jre") |
19 | | - implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.23") |
20 | | - implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.23") |
21 | | - implementation("org.apache.kafka:kafka-clients:6.0.1-ccs") |
| 18 | + implementation("com.google.guava:guava:30.1-jre") |
| 19 | + implementation("org.hypertrace.core.serviceframework:platform-metrics:0.1.31") |
| 20 | + implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.31") |
| 21 | + implementation("org.apache.kafka:kafka-clients:6.0.1-ccs") |
22 | 22 |
|
23 | | - testImplementation("org.apache.kafka:kafka-streams-test-utils:6.0.1-ccs") |
24 | | - testImplementation("org.junit.jupiter:junit-jupiter:5.7.0") |
25 | | - testImplementation("org.junit-pioneer:junit-pioneer:1.1.0") |
26 | | - testImplementation("org.mockito:mockito-core:3.6.28") |
27 | | - testImplementation("org.hamcrest:hamcrest-core:2.2") |
28 | | - testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.14.0") |
| 23 | + constraints { |
| 24 | + api("org.glassfish.jersey.core:jersey-common:2.34") { |
| 25 | + because("https://snyk.io/vuln/SNYK-JAVA-ORGGLASSFISHJERSEYCORE-1255637") |
| 26 | + } |
| 27 | + } |
| 28 | + |
| 29 | + testImplementation("org.apache.kafka:kafka-streams-test-utils:6.0.1-ccs") |
| 30 | + testImplementation("org.junit.jupiter:junit-jupiter:5.7.0") |
| 31 | + testImplementation("org.junit-pioneer:junit-pioneer:1.1.0") |
| 32 | + testImplementation("org.mockito:mockito-core:3.6.28") |
| 33 | + testImplementation("org.hamcrest:hamcrest-core:2.2") |
| 34 | + testRuntimeOnly("org.apache.logging.log4j:log4j-slf4j-impl:2.15.0") |
29 | 35 | } |
30 | 36 |
|
0 commit comments