File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -15,23 +15,23 @@ Use it in connector config file:
15
15
Use dot notation for deeper fields (e. g. ` level1.level2 ` ).
16
16
17
17
## Install to Kafka Connect
18
- After build copy file ` target/stirngify-json-smt-0.0.3 -jar-with-deps.jar `
18
+ After build copy file ` target/stirngify-json-smt-0.0.4 -jar-with-deps.jar `
19
19
to Kafka Connect container `` copying to its docker image or so.
20
20
21
21
It can be done adding this line to Dockerfile:
22
22
~~~ Dockerfile
23
- COPY ./target/stringify-json-smt-0.0.3 -jar-with-deps.jar $KAFKA_CONNECT_PLUGINS_DIR
23
+ COPY ./target/stringify-json-smt-0.0.4 -jar-with-deps.jar $KAFKA_CONNECT_PLUGINS_DIR
24
24
~~~
25
25
26
26
Or download current release:
27
27
~~~ Dockerfile
28
28
RUN curl -fSL -o /tmp/plugin.tar.gz \
29
- https://github.com/max-prosper/stringify-json-smt/releases/download/0.0.3/stringify-json-smt-0.0.3 .tar.gz && \
29
+ https://github.com/max-prosper/stringify-json-smt/releases/download/0.0.3/stringify-json-smt-0.0.4 .tar.gz && \
30
30
tar -xzf /tmp/plugin.tar.gz -C $KAFKA_CONNECT_PLUGINS_DIR && \
31
31
rm -f /tmp/plugin.tar.gz;
32
32
~~~
33
33
34
34
## Build release file
35
- - Increment version in ` pom.xml ` (e.g. to ` 0.0.4 ` ).
35
+ - Increment version in ` pom.xml ` (e.g. to ` 0.0.5 ` ).
36
36
- Run build script: ` ./scripts/build-release.sh 0.0.4 ` .
37
- - Take ` *.tar.gz ` file from ` target ` folder and publish it.
37
+ - Take ` *.tar.gz ` file from ` target ` folder and publish it.
Original file line number Diff line number Diff line change 6
6
7
7
<groupId >com.github.maxprosper.smt.stringifyjson</groupId >
8
8
<artifactId >stringify-json-smt</artifactId >
9
- <version >0.0.3 </version >
9
+ <version >0.0.4 </version >
10
10
11
11
<properties >
12
12
<commons-lang3 .version>3.8.1</commons-lang3 .version>
You can’t perform that action at this time.
0 commit comments