Skip to content

Commit 58ff43d

Browse files
1.0.0 (#14)
* Changed the version to 1.0.0 * Added plugin.path
1 parent 1793349 commit 58ff43d

File tree

5 files changed

+16
-34
lines changed

5 files changed

+16
-34
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
same "printed page" as the copyright notice for easier
188188
identification within third-party archives.
189189

190-
Copyright 2017 Jeremy Custenborder ([email protected])
190+
Copyright [yyyy] [name of copyright owner]
191191

192192
Licensed under the Apache License, Version 2.0 (the "License");
193193
you may not use this file except in compliance with the License.

config/connect-avro-docker.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,4 +39,5 @@ offset.storage.file.filename=/tmp/connect.offsets
3939
# that will report audit data that can be displayed and analyzed in Confluent Control Center
4040
# producer.interceptor.classes=io.confluent.monitoring.clients.interceptor.MonitoringProducerInterceptor
4141
# consumer.interceptor.classes=io.confluent.monitoring.clients.interceptor.MonitoringConsumerInterceptor
42-
consumer.max.poll.records=500
42+
consumer.max.poll.records=500
43+
plugin.path=target/kafka-connect-target/usr/share/java

docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@
1717
version: "2"
1818
services:
1919
zookeeper:
20-
image: confluentinc/cp-zookeeper:3.1.1-1
20+
image: confluentinc/cp-zookeeper:3.3.0
2121
environment:
2222
ZOOKEEPER_CLIENT_PORT: 2181
2323
zk_id: "1"
2424
kafka:
2525
hostname: kafka
26-
image: confluentinc/cp-kafka:3.1.1-1
26+
image: confluentinc/cp-kafka:3.3.0
2727
links:
2828
- zookeeper
2929
ports:
@@ -32,7 +32,7 @@ services:
3232
KAFKA_ZOOKEEPER_CONNECT: "zookeeper:2181"
3333
KAFKA_ADVERTISED_LISTENERS: "PLAINTEXT://:9092"
3434
schema-registry:
35-
image: confluentinc/cp-schema-registry:3.1.1-1
35+
image: confluentinc/cp-schema-registry:3.3.0
3636
links:
3737
- kafka
3838
- zookeeper

docs/introduction.rst renamed to docs/connectors.rst

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,6 @@ that can be used to write data to a Splunk HEC endpoint.
2323
sinks/*
2424

2525

26-
.. toctree::
27-
:maxdepth: 1
28-
:caption: Transformations:
29-
:hidden:
30-
:glob:
31-
32-
transformations/*
33-
34-
3526
.. toctree::
3627
:maxdepth: 0
3728
:caption: Schemas:

pom.xml

Lines changed: 10 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,32 @@
11
<?xml version="1.0"?>
2-
<!--
3-
4-
Copyright © 2016 Jeremy Custenborder ([email protected])
5-
6-
Licensed under the Apache License, Version 2.0 (the "License");
7-
you may not use this file except in compliance with the License.
8-
You may obtain a copy of the License at
9-
10-
http://www.apache.org/licenses/LICENSE-2.0
11-
12-
Unless required by applicable law or agreed to in writing, software
13-
distributed under the License is distributed on an "AS IS" BASIS,
14-
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15-
See the License for the specific language governing permissions and
16-
limitations under the License.
17-
18-
-->
192
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
203
xmlns="http://maven.apache.org/POM/4.0.0"
214
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
225
<modelVersion>4.0.0</modelVersion>
236
<parent>
247
<groupId>com.github.jcustenborder.kafka.connect</groupId>
258
<artifactId>kafka-connect-parent</artifactId>
26-
<version>0.10.2.1-cp2</version>
9+
<version>1.0.0</version>
2710
</parent>
2811
<artifactId>kafka-connect-splunk</artifactId>
2912
<version>0.2.0-SNAPSHOT</version>
3013
<name>kafka-connect-splunk</name>
3114
<url>https://github.com/jcustenborder/kafka-connect-splunk</url>
3215
<inceptionYear>2016</inceptionYear>
16+
<licenses>
17+
<license>
18+
<name>Apache License 2.0</name>
19+
<url>https:/github.com/jcustenborder/kafka-connect-splunk/LICENSE</url>
20+
<distribution>repo</distribution>
21+
</license>
22+
</licenses>
3323
<developers>
3424
<developer>
25+
<id>jcustenborder</id>
3526
<name>Jeremy Custenborder</name>
36-
<email>[email protected]</email>
3727
<url>https://github.com/jcustenborder</url>
3828
<roles>
39-
<role>maintainer</role>
29+
<role>Committer</role>
4030
</roles>
4131
</developer>
4232
</developers>

0 commit comments

Comments
 (0)