Skip to content

Commit f1922fe

Browse files
committed
[chore] Using 5. and 6. version prefixes to indicate the target Confluent Platform version
1 parent 6b67eb2 commit f1922fe

File tree

4 files changed

+11
-11
lines changed

4 files changed

+11
-11
lines changed

docker/run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ echo "Building the Redis Enterprise Kafka Connector"
1212
(
1313
cd ..
1414
./mvnw clean package
15-
find ./target/components/packages -type d -name "redis-redis-enterprise-kafka-cp5-*" -mindepth 2 -maxdepth 2 -exec mv {} ./target/components/packages/redis-enterprise-kafka \;
15+
find ./target/components/packages -type d -name "redis-redis-enterprise-kafka-5.*" -mindepth 2 -maxdepth 2 -exec mv {} ./target/components/packages/redis-enterprise-kafka \;
1616
)
1717

1818
echo "Starting docker ."

jreleaser.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,16 @@ announce:
5959
message: '🚀 Redis Enterprise Kafka Connector {{projectVersion}} has been released! {{releaseNotesUrl}}'
6060

6161
distributions:
62-
redis-redis-enterprise-kafka-cp5:
62+
redis-redis-enterprise-kafka-5:
6363
type: binary
6464
artifacts:
65-
- path: target/components/packages/{{distributionName}}-{{projectVersion}}.zip
66-
transform: '{{distributionName}}-{{projectEffectiveVersion}}.zip'
67-
redis-redis-enterprise-kafka-cp6:
65+
- path: target/components/packages/{{distributionName}}.{{projectVersion}}.zip
66+
transform: '{{distributionName}}.{{projectEffectiveVersion}}.zip'
67+
redis-redis-enterprise-kafka-6:
6868
type: binary
6969
artifacts:
70-
- path: target/components/packages/{{distributionName}}-{{projectVersion}}.zip
71-
transform: '{{distributionName}}-{{projectEffectiveVersion}}.zip'
70+
- path: target/components/packages/{{distributionName}}.{{projectVersion}}.zip
71+
transform: '{{distributionName}}.{{projectEffectiveVersion}}.zip'
7272
files:
7373
artifacts:
7474
- path: target/generated-docs/redis-enterprise-kafka-{{projectVersion}}.pdf

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -319,7 +319,7 @@
319319
</goals>
320320
<configuration>
321321
<description>Kafka Connect source and sink connectors for Redis Enterprise. It is for Confluent Plaform 5.0 and above</description>
322-
<version>cp5-${project.version}</version>
322+
<version>5.${project.version}</version>
323323
<requirements>
324324
<requirement>Confluent Platform 5.0+</requirement>
325325
<requirement>Redis Enterprise 6.0+</requirement>
@@ -334,7 +334,7 @@
334334
</goals>
335335
<configuration>
336336
<description>Kafka Connect source and sink connectors for Redis Enterprise. It is for Confluent Plaform 6.0 and above</description>
337-
<version>cp6-${project.version}</version>
337+
<version>6.${project.version}</version>
338338
<requirements>
339339
<requirement>Confluent Platform 6.0+</requirement>
340340
<requirement>Redis Enterprise 6.0+</requirement>

src/docs/asciidoc/_install.adoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ Download the latest release archive from https://github.com/{github-owner}/{gith
99
====
1010
Download the connector archive that matches your version of Confluent Platform:
1111
12-
* Confluent Platform 5.0+: `{component-owner}-{component-name}-*cp5*-{project-version}.zip`
13-
* Confluent Platform 6.0+: `{component-owner}-{component-name}-*cp6*-{project-version}.zip`
12+
* Confluent Platform 5.0+: `{component-owner}-{component-name}-*5*.{project-version}.zip`
13+
* Confluent Platform 6.0+: `{component-owner}-{component-name}-*6*.{project-version}.zip`
1414
====
1515

1616
== Install using Confluent Hub

0 commit comments

Comments
 (0)