Skip to content

Commit 139fa38

Browse files
Merge pull request #24 from AndrewJSchofield/update-to-1.2.0
Update to version 1.2.0
2 parents 1c693e0 + be2181e commit 139fa38

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-sink-1.2.0-SNAPSHOT-jar-with-dependencies.jar /opt/kafka/libs/
14+
COPY --chown=esuser:esgroup target/kafka-connect-mq-sink-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
@@ -315,7 +315,7 @@ For issues relating specifically to this connector, please use the [GitHub issue
315315

316316

317317
## License
318-
Copyright 2017, 2018, 2019 IBM Corporation
318+
Copyright 2017, 2020 IBM Corporation
319319

320320
Licensed under the Apache License, Version 2.0 (the "License");
321321
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-sink</artifactId>
2222
<packaging>jar</packaging>
23-
<version>1.2.0-SNAPSHOT</version>
23+
<version>1.2.0</version>
2424
<name>kafka-connect-mq-sink</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/mqsink/MQSinkConnector.java

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.
@@ -139,7 +139,7 @@ public class MQSinkConnector extends SinkConnector {
139139
public static final String CONFIG_DOCUMENTATION_MQ_USER_AUTHENTICATION_MQCSP = "Whether to use MQ connection security parameters (MQCSP).";
140140
public static final String CONFIG_DISPLAY_MQ_USER_AUTHENTICATION_MQCSP = "User authentication using MQCSP";
141141

142-
public static String VERSION = "1.2.0-SNAPSHOT";
142+
public static String VERSION = "1.2.0";
143143

144144
private Map<String, String> configProps;
145145

0 commit comments

Comments
 (0)