diff --git a/README.md b/README.md index b1de08f..b5c4e87 100644 --- a/README.md +++ b/README.md @@ -35,10 +35,10 @@ Maintainers will also be in charge of both versioning and publishing future rele 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: ``` -2.2.0 +3.1.1 ``` -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. +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. 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: diff --git a/pom.xml b/pom.xml index 7558776..c49c551 100644 --- a/pom.xml +++ b/pom.xml @@ -4,14 +4,14 @@ com.humio.kafka.connect.hec kafka-connect-hec-sink - 1.1.4 + 1.1.5 jar kafka-connect-hec-sink A Kafka Connect sink for HEC - 2.2.0 + 3.1.1 4.2.4 5.8.2 5.8.2 @@ -28,7 +28,7 @@ 1.6.8 2.22.1 2.13.0 - 5.2.1 + 7.2.1 UTF-8 @@ -194,6 +194,16 @@ ${avro.version} test + + org.codehaus.plexus + plexus-utils + 3.4.2 + + + commons-codec + commons-codec + 1.15 + diff --git a/src/test/resources/docker/docker-compose.yml b/src/test/resources/docker/docker-compose.yml index d2826c8..20208ca 100644 --- a/src/test/resources/docker/docker-compose.yml +++ b/src/test/resources/docker/docker-compose.yml @@ -55,7 +55,7 @@ services: SCHEMA_REGISTRY_KAFKASTORE_CONNECTION_URL: 'zookeeper:12181' kafkaconnect: - image: confluentinc/cp-kafka-connect:5.2.0 + image: confluentinc/cp-kafka-connect:5.4.9 hostname: kafkaconnect depends_on: - zookeeper @@ -64,7 +64,7 @@ services: ports: - "18083:18083" volumes: - - ../../../../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 + - ../../../../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 environment: CONNECT_BOOTSTRAP_SERVERS: 'kafkabroker:19092' CONNECT_REST_ADVERTISED_HOST_NAME: kafkaconnect