Skip to content

Commit

Permalink
build: upgrade kafka connect deps and parallelize tests (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
ali-ince authored Dec 4, 2024
1 parent 3af5b88 commit f999571
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,11 @@
<junit-jupiter.version>5.11.3</junit-jupiter.version>
<!-- keep the next two in sync: https://docs.confluent.io/platform/current/installation/versions-interoperability.html -->
<!-- as well as versions in the docker-compose.yml file -->
<kafka-schema-registry.version>7.2.9</kafka-schema-registry.version>
<!-- kafka connect below 3.4 is vulnerable to https://nvd.nist.gov/vuln/detail/CVE-2023-25194 -->
<!-- refer to https://www.confluent.io/previous-versions/ for previous versions of Confluent Platform -->
<kafka-schema-registry.version>7.8.0</kafka-schema-registry.version>
<!-- although our baseline version is 3.1, kafka connect below 3.4 is vulnerable to https://nvd.nist.gov/vuln/detail/CVE-2023-25194 -->
<!-- although our baseline version is 3.1, kafka connect below 3.8 is vulnerable to https://www.cve.org/CVERecord?id=CVE-2023-43642 -->
<!-- so we set the version to the first version that the vulnerability is resolved -->
<kafka.version>3.8.1</kafka.version>
<kotest-assertions-core-jvm.version>5.9.1</kotest-assertions-core-jvm.version>
<kotlin.coroutines.version>1.9.0</kotlin.coroutines.version>
Expand Down Expand Up @@ -537,6 +540,7 @@
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<configuration>
<forkCount>4</forkCount>
<includes>
<include>**/*IT.*</include>
</includes>
Expand Down

0 comments on commit f999571

Please sign in to comment.