Skip to content

Commit 05e5c13

Browse files
Tidy up version information
1 parent eb4f96b commit 05e5c13

File tree

3 files changed

+43
-38
lines changed

3 files changed

+43
-38
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Kafka Connect source connector for IBM MQ
2-
kafka-connect-mqsource is a [Kafka Connect](http://kafka.apache.org/documentation.html#connect) source connector for copying data from IBM MQ into Apache Kafka.
2+
kafka-connect-mq-source is a [Kafka Connect](http://kafka.apache.org/documentation.html#connect) source connector for copying data from IBM MQ into Apache Kafka.
33

44
The connector is supplied as source code which you can easily build into a JAR file.
55

@@ -33,7 +33,7 @@ To run the connector, you must have:
3333
* The JAR from building the connector
3434
* A properties file containing the configuration for the connector
3535
* Apache Kafka
36-
* IBM MQ v8.0 or later
36+
* IBM MQ v7.5 or later
3737

3838
The connector can be run in a Kafka Connect worker in either standalone (single process) or distributed mode. It's a good idea to start in standalone mode.
3939

@@ -149,9 +149,9 @@ The configuration options for the MQ Source Connector are as follows:
149149

150150
## Future enhancements
151151
The connector is intentionally basic. The idea is to enhance it over time with additional features to make it more capable. Some possible future enhancements are:
152+
* Configurable schema for MQ messages
152153
* Simplification of handling message formats
153154
* Message key support
154-
* Configurable schema for MQ messages
155155
* JMX metrics
156156
* Testing with the Confluent Platform Avro converter and Schema Registry
157157
* Separate TLS configuration for the connector so that keystore location and so on can be specified as configurations

UsingMQwithKafkaConnect.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ topic=TSOURCE
154154

155155
Change directory to the Kafka root directory. Start the connector worker replacing `<connector-root-directory>`:
156156
``` shell
157-
CLASSPATH=<connector-root-directory>/target/kafka-connect-mq-source-0.2-SNAPSHOT-jar-with-dependencies.jar bin/connect-standalone.sh config/connect-standalone.properties ~/mq-source.properties
157+
CLASSPATH=<connector-root-directory>/target/kafka-connect-mq-source-0.3-SNAPSHOT-jar-with-dependencies.jar bin/connect-standalone.sh config/connect-standalone.properties ~/mq-source.properties
158158
```
159159

160160
Wait while the worker starts and then prints:
@@ -212,7 +212,7 @@ mq.password=passw0rd
212212

213213
Change directory to the Kafka root directory. Start the connector worker replacing `<connector-root-directory>`:
214214
``` shell
215-
CLASSPATH=<connector-root-directory>/target/kafka-connect-mq-sink-0.2-SNAPSHOT-jar-with-dependencies.jar bin/kafka-connect-standalone config/connect-standalone.properties ~/mq-sink.properties
215+
CLASSPATH=<connector-root-directory>/target/kafka-connect-mq-sink-0.3-SNAPSHOT-jar-with-dependencies.jar bin/kafka-connect-standalone config/connect-standalone.properties ~/mq-sink.properties
216216
```
217217

218218
Wait while the worker starts and then prints:

pom.xml

Lines changed: 38 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -23,32 +23,36 @@
2323
<version>0.3-SNAPSHOT</version>
2424
<name>kafka-connect-mq-source</name>
2525
<organization>
26-
<name>IBM Corporation</name>
27-
<url>http://ibm.com</url>
26+
<name>IBM Corporation</name>
27+
<url>http://ibm.com</url>
2828
</organization>
2929
<url>http://ibm.com</url>
3030
<description>
3131
A Kafka Connect connector for copying data from IBM MQ into Apache Kafka.
3232
</description>
3333
<licenses>
34-
<license>
35-
<name>Apache License 2.0</name>
36-
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
37-
<distribution>repo</distribution>
38-
</license>
34+
<license>
35+
<name>Apache License 2.0</name>
36+
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
37+
<distribution>repo</distribution>
38+
</license>
3939
</licenses>
40+
<properties>
41+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
42+
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
43+
</properties>
4044
<dependencies>
4145
<dependency>
42-
<groupId>org.apache.kafka</groupId>
43-
<artifactId>connect-api</artifactId>
44-
<version>0.11.0.0</version>
45-
<scope>provided</scope>
46-
</dependency>
46+
<groupId>org.apache.kafka</groupId>
47+
<artifactId>connect-api</artifactId>
48+
<version>0.11.0.0</version>
49+
<scope>provided</scope>
50+
</dependency>
4751
<dependency>
48-
<groupId>org.apache.kafka</groupId>
49-
<artifactId>connect-json</artifactId>
50-
<version>0.11.0.0</version>
51-
<scope>provided</scope>
52+
<groupId>org.apache.kafka</groupId>
53+
<artifactId>connect-json</artifactId>
54+
<version>0.11.0.0</version>
55+
<scope>provided</scope>
5256
</dependency>
5357

5458
<dependency>
@@ -69,10 +73,10 @@
6973
<scope>test</scope>
7074
</dependency>
7175
<dependency>
72-
<groupId>org.slf4j</groupId>
73-
<artifactId>slf4j-log4j12</artifactId>
74-
<version>1.7.25</version>
75-
<scope>test</scope>
76+
<groupId>org.slf4j</groupId>
77+
<artifactId>slf4j-log4j12</artifactId>
78+
<version>1.7.25</version>
79+
<scope>test</scope>
7680
</dependency>
7781
</dependencies>
7882

@@ -88,19 +92,20 @@
8892
</plugin>
8993
<plugin>
9094
<artifactId>maven-assembly-plugin</artifactId>
91-
<executions>
92-
<execution>
93-
<phase>package</phase>
94-
<goals>
95-
<goal>single</goal>
96-
</goals>
97-
</execution>
98-
</executions>
99-
<configuration>
100-
<descriptorRefs>
101-
<descriptorRef>jar-with-dependencies</descriptorRef>
102-
</descriptorRefs>
103-
</configuration>
95+
<version>3.1.0</version>
96+
<executions>
97+
<execution>
98+
<phase>package</phase>
99+
<goals>
100+
<goal>single</goal>
101+
</goals>
102+
</execution>
103+
</executions>
104+
<configuration>
105+
<descriptorRefs>
106+
<descriptorRef>jar-with-dependencies</descriptorRef>
107+
</descriptorRefs>
108+
</configuration>
104109
</plugin>
105110
</plugins>
106111
</build>

0 commit comments

Comments
 (0)