Skip to content

Commit 5297750

Browse files
Update to use Java 8
1 parent 6964827 commit 5297750

File tree

4 files changed

+7
-8
lines changed

4 files changed

+7
-8
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Build the connector using Maven:
2525
mvn clean package
2626
```
2727

28-
Once built, the output is a single JAR called `target/kafka-connect-mq-source-0.4-SNAPSHOT-jar-with-dependencies.jar` which contains all of the required dependencies.
28+
Once built, the output is a single JAR called `target/kafka-connect-mq-source-0.5-SNAPSHOT-jar-with-dependencies.jar` which contains all of the required dependencies.
2929

3030

3131
## Running the connector
@@ -153,7 +153,6 @@ The connector is intentionally basic. The idea is to enhance it over time with a
153153
* Simplification of handling message formats
154154
* Message key support
155155
* JMX metrics
156-
* Testing with the Confluent Platform Avro converter and Schema Registry
157156
* Separate TLS configuration for the connector so that keystore location and so on can be specified as configurations
158157

159158

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.4-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.5-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.4-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.5-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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
<groupId>com.ibm.mq.kafkaconnect</groupId>
2121
<artifactId>kafka-connect-mq-source</artifactId>
2222
<packaging>jar</packaging>
23-
<version>0.4-SNAPSHOT</version>
23+
<version>0.5-SNAPSHOT</version>
2424
<name>kafka-connect-mq-source</name>
2525
<organization>
2626
<name>IBM Corporation</name>
@@ -86,8 +86,8 @@
8686
<artifactId>maven-compiler-plugin</artifactId>
8787
<version>3.1</version>
8888
<configuration>
89-
<source>1.7</source>
90-
<target>1.7</target>
89+
<source>1.8</source>
90+
<target>1.8</target>
9191
</configuration>
9292
</plugin>
9393
<plugin>

src/main/java/com/ibm/mq/kafkaconnect/MQSourceConnector.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public class MQSourceConnector extends SourceConnector {
7979
public static final String CONFIG_DOCUMENTATION_TOPIC = "The name of the target Kafka topic.";
8080
public static final String CONFIG_DISPLAY_TOPIC = "Target Kafka topic";
8181

82-
public static String VERSION = "0.4";
82+
public static String VERSION = "0.5";
8383

8484
private Map<String, String> configProps;
8585

0 commit comments

Comments
 (0)