Skip to content

Commit 4bb834e

Browse files
Update to version 1.2.0
Signed-off-by: Andrew Schofield <andrew_schofield@uk.ibm.com>
1 parent 2cd72ec commit 4bb834e

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM ibmcom/eventstreams-kafka-ce-icp-linux-amd64:2019.2.1-3a2f93e as builder
1+
FROM cp.icr.io/cp/icp4i/es/eventstreams-kafka-icp-linux-amd64:2019.4.2-1ec6a54 as builder
22

33

44
FROM ibmjava:8-jre
@@ -11,7 +11,7 @@ COPY --chown=esuser:esgroup --from=builder /opt/kafka/libs/ /opt/kafka/libs/
1111
COPY --chown=esuser:esgroup --from=builder /opt/kafka/config/connect-distributed.properties /opt/kafka/config/
1212
COPY --chown=esuser:esgroup --from=builder /opt/kafka/config/connect-log4j.properties /opt/kafka/config/
1313
RUN mkdir /opt/kafka/logs && chown esuser:esgroup /opt/kafka/logs
14-
COPY --chown=esuser:esgroup target/kafka-connect-mq-source-1.2.0-SNAPSHOT-jar-with-dependencies.jar /opt/kafka/libs/
14+
COPY --chown=esuser:esgroup target/kafka-connect-mq-source-1.2.0-jar-with-dependencies.jar /opt/kafka/libs/
1515

1616
WORKDIR /opt/kafka
1717

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ For issues relating specifically to this connector, please use the [GitHub issue
287287

288288

289289
## License
290-
Copyright 2017, 2018, 2019 IBM Corporation
290+
Copyright 2017, 2020 IBM Corporation
291291

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

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<!--
3-
* Copyright 2017, 2018, 2019 IBM Corporation
3+
* Copyright 2017, 2020 IBM Corporation
44
*
55
* Licensed under the Apache License, Version 2.0 (the "License");
66
* you may not use this file except in compliance with the License.
@@ -20,7 +20,7 @@
2020
<groupId>com.ibm.eventstreams.connect</groupId>
2121
<artifactId>kafka-connect-mq-source</artifactId>
2222
<packaging>jar</packaging>
23-
<version>1.2.0-SNAPSHOT</version>
23+
<version>1.2.0</version>
2424
<name>kafka-connect-mq-source</name>
2525
<organization>
2626
<name>IBM Corporation</name>
@@ -45,13 +45,13 @@
4545
<dependency>
4646
<groupId>org.apache.kafka</groupId>
4747
<artifactId>connect-api</artifactId>
48-
<version>2.3.0</version>
48+
<version>2.3.1</version>
4949
<scope>provided</scope>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.kafka</groupId>
5353
<artifactId>connect-json</artifactId>
54-
<version>2.3.0</version>
54+
<version>2.3.1</version>
5555
<scope>provided</scope>
5656
</dependency>
5757

src/main/java/com/ibm/eventstreams/connect/mqsource/MQSourceConnector.java

100755100644
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* Copyright 2017, 2018, 2019 IBM Corporation
2+
* Copyright 2017, 2020 IBM Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -131,7 +131,7 @@ public class MQSourceConnector extends SourceConnector {
131131
public static final String CONFIG_DOCUMENTATION_TOPIC = "The name of the target Kafka topic.";
132132
public static final String CONFIG_DISPLAY_TOPIC = "Target Kafka topic";
133133

134-
public static String VERSION = "1.2.0-SNAPSHOT";
134+
public static String VERSION = "1.2.0";
135135

136136
private Map<String, String> configProps;
137137

0 commit comments

Comments
 (0)