Skip to content
This repository was archived by the owner on Nov 20, 2024. It is now read-only.

Commit c6473f5

Browse files
committed
Merge branch 'master' into 1.1-release
2 parents 8c6834a + c17f93d commit c6473f5

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ Maintainers will also be in charge of both versioning and publishing future rele
3535
The Humio HEC connector uses maven to build and test itself. The version of Kafka to build for is indicated in the `pom.xml` file by the line:
3636

3737
```
38-
<kafka.version>2.2.0</kafka.version>
38+
<kafka.version>3.1.1</kafka.version>
3939
```
4040

41-
Out of the box, Kafka 2.2.0 is supported. This can (and should) be changed to match your current Kafka or Confluent Platform version; to check which version this is, refer to the [Confluent Platform Versions](https://docs.confluent.io/current/installation/versions-interoperability.html) page.
41+
Out of the box, Kafka 3.1.1 is supported. This can (and should) be changed to match your current Kafka or Confluent Platform version; to check which version this is, refer to the [Confluent Platform Versions](https://docs.confluent.io/current/installation/versions-interoperability.html) page.
4242

4343
Scripts are provided to automatically build and package the connector jar. `bin/compile.sh` automatically compiles and packages the connector, with the resulting "uber jar" located at `target/kafka-connect-hec-sink-1.0-SNAPSHOT-jar-with-dependencies.jar`. Alternatively, you can run:
4444

pom.xml

+13-3
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
<groupId>com.humio.kafka.connect.hec</groupId>
66
<artifactId>kafka-connect-hec-sink</artifactId>
7-
<version>1.1.4</version>
7+
<version>1.1.5</version>
88
<packaging>jar</packaging>
99

1010
<name>kafka-connect-hec-sink</name>
1111
<description>A Kafka Connect sink for HEC</description>
1212

1313
<properties>
14-
<kafka.version>2.2.0</kafka.version>
14+
<kafka.version>3.1.1</kafka.version>
1515
<metrics.version>4.2.4</metrics.version>
1616
<junit.jupiter.version>5.8.2</junit.jupiter.version>
1717
<junit.vintage.version>5.8.2</junit.vintage.version>
@@ -28,7 +28,7 @@
2828
<nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version>
2929
<mvn.failsafe.plugin.version>2.22.1</mvn.failsafe.plugin.version>
3030
<jackson.version>2.13.0</jackson.version>
31-
<confluent.interceptors.version>5.2.1</confluent.interceptors.version>
31+
<confluent.interceptors.version>7.2.1</confluent.interceptors.version>
3232
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
3333
</properties>
3434

@@ -194,6 +194,16 @@
194194
<version>${avro.version}</version>
195195
<scope>test</scope>
196196
</dependency>
197+
<dependency>
198+
<groupId>org.codehaus.plexus</groupId>
199+
<artifactId>plexus-utils</artifactId>
200+
<version>3.4.2</version>
201+
</dependency>
202+
<dependency>
203+
<groupId>commons-codec</groupId>
204+
<artifactId>commons-codec</artifactId>
205+
<version>1.15</version>
206+
</dependency>
197207
</dependencies>
198208

199209
<build>

src/test/resources/docker/docker-compose.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ services:
5555
SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:12181'
5656

5757
kafkaconnect:
58-
image: confluentinc/cp-kafka-connect:5.2.0
58+
image: confluentinc/cp-kafka-connect:5.4.9
5959
hostname: kafkaconnect
6060
depends_on:
6161
- zookeeper
@@ -64,7 +64,7 @@ services:
6464
ports:
6565
- "18083:18083"
6666
volumes:
67-
- ../../../../target/kafka-connect-hec-sink-1.1.4-jar-with-dependencies.jar:/etc/kafka-connect/jars/kafka-connect-hec-sink/kafka-connect-hec-sink-1.0-SNAPSHOT-jar-with-dependencies.jar
67+
- ../../../../target/kafka-connect-hec-sink-1.1.5-jar-with-dependencies.jar:/etc/kafka-connect/jars/kafka-connect-hec-sink/kafka-connect-hec-sink-1.0-SNAPSHOT-jar-with-dependencies.jar
6868
environment:
6969
CONNECT_BOOTSTRAP_SERVERS: 'kafkabroker:19092'
7070
CONNECT_REST_ADVERTISED_HOST_NAME: kafkaconnect

0 commit comments

Comments
 (0)