Skip to content

Commit 4604da3

Browse files
committed
changed archive file name
1 parent 2d2ccae commit 4604da3

File tree

2 files changed

+30
-50
lines changed

2 files changed

+30
-50
lines changed

jreleaser.yml

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

6161
distributions:
62-
kafka-connect-archive-cp5:
62+
redis-enterprise-kafka:
6363
type: binary
6464
artifacts:
65-
- path: target/components/packages/redislabs-cp5-{{projectName}}-{{projectVersion}}.zip
66-
kafka-connect-archive-cp6:
67-
type: binary
68-
artifacts:
69-
- path: target/components/packages/redislabs-cp6-{{projectName}}-{{projectVersion}}.zip
65+
- path: target/components/packages/redis-{{projectName}}-cp5-{{projectVersion}}.zip
66+
transform: '{{distributionName}}/{{distributionName}}-cp5-{{projectEffectiveVersion}}.zip'
67+
- path: target/components/packages/redis-{{projectName}}-cp6-{{projectVersion}}.zip
68+
transform: '{{distributionName}}/{{distributionName}}-cp6-{{projectEffectiveVersion}}.zip'
7069

7170
files:
7271
artifacts:

pom.xml

Lines changed: 25 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -276,6 +276,29 @@
276276
<groupId>io.confluent</groupId>
277277
<artifactId>kafka-connect-maven-plugin</artifactId>
278278
<version>0.12.0</version>
279+
<configuration>
280+
<ownerUsername>redis</ownerUsername>
281+
<documentationUrl>https://redislabs-field-engineering.github.io/redis-enterprise-kafka/</documentationUrl>
282+
<ownerLogo>src/docs/asciidoc/images/redislabs.svg</ownerLogo>
283+
<ownerName>Redis Labs</ownerName>
284+
<ownerUrl>https://redislabs.com</ownerUrl>
285+
<sourceUrl>${project.scm.url}</sourceUrl>
286+
<supportProviderName>Redis Labs</supportProviderName>
287+
<supportSummary>
288+
<![CDATA[This connector is <a href="https://redislabs.com/company/support/">supported by Redis Labs</a> as part of a
289+
<a href="https://redislabs.com/redis-enterprise">Redis Enterprise</a> license.]]>
290+
</supportSummary>
291+
<supportUrl>${project.issueManagement.url}</supportUrl>
292+
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
293+
<componentTypes>
294+
<componentType>sink</componentType>
295+
<componentType>source</componentType>
296+
</componentTypes>
297+
<tags>
298+
<tag>redis</tag>
299+
<tag>enterprise</tag>
300+
</tags>
301+
</configuration>
279302
<executions>
280303
<execution>
281304
<id>cp5</id>
@@ -285,32 +308,11 @@
285308
</goals>
286309
<configuration>
287310
<title>Redis Enterprise Kafka for Confluent Platform 5.x</title>
288-
<documentationUrl>https://redislabs-field-engineering.github.io/redis-enterprise-kafka/
289-
</documentationUrl>
290-
<ownerLogo>src/docs/asciidoc/images/redislabs.svg</ownerLogo>
291-
<ownerUsername>redislabs-cp5</ownerUsername>
292-
<ownerName>Redis Labs</ownerName>
293-
<ownerUrl>https://redislabs.com</ownerUrl>
294-
<sourceUrl>${project.scm.url}</sourceUrl>
295-
<supportProviderName>Redis Labs</supportProviderName>
296-
<supportSummary>
297-
<![CDATA[This connector is <a href="https://redislabs.com/company/support/">supported by Redis Labs</a> as part of a
298-
<a href="https://redislabs.com/redis-enterprise">Redis Enterprise</a> license.]]>
299-
</supportSummary>
300-
<supportUrl>${project.issueManagement.url}</supportUrl>
301-
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
302-
<componentTypes>
303-
<componentType>sink</componentType>
304-
<componentType>source</componentType>
305-
</componentTypes>
311+
<version>cp5-${project.version}</version>
306312
<requirements>
307313
<requirement>Confluent Platform 5.0+</requirement>
308314
<requirement>Redis Enterprise 6.0+</requirement>
309315
</requirements>
310-
<tags>
311-
<tag>redis</tag>
312-
<tag>enterprise</tag>
313-
</tags>
314316
</configuration>
315317
</execution>
316318
<execution>
@@ -321,32 +323,11 @@
321323
</goals>
322324
<configuration>
323325
<title>Redis Enterprise Kafka for Confluent Platform 6.x</title>
324-
<documentationUrl>https://redislabs-field-engineering.github.io/redis-enterprise-kafka/
325-
</documentationUrl>
326-
<ownerLogo>src/docs/asciidoc/images/redislabs.svg</ownerLogo>
327-
<ownerUsername>redislabs-cp6</ownerUsername>
328-
<ownerName>Redis Labs</ownerName>
329-
<ownerUrl>https://redislabs.com</ownerUrl>
330-
<sourceUrl>${project.scm.url}</sourceUrl>
331-
<supportProviderName>Redis Labs</supportProviderName>
332-
<supportSummary>
333-
<![CDATA[This connector is <a href="https://redislabs.com/company/support/">supported by Redis Labs</a> as part of a
334-
<a href="https://redislabs.com/redis-enterprise">Redis Enterprise</a> license.]]>
335-
</supportSummary>
336-
<supportUrl>${project.issueManagement.url}</supportUrl>
337-
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
338-
<componentTypes>
339-
<componentType>sink</componentType>
340-
<componentType>source</componentType>
341-
</componentTypes>
326+
<version>cp6-${project.version}</version>
342327
<requirements>
343328
<requirement>Confluent Platform 6.0+</requirement>
344329
<requirement>Redis Enterprise 6.0+</requirement>
345330
</requirements>
346-
<tags>
347-
<tag>redis</tag>
348-
<tag>enterprise</tag>
349-
</tags>
350331
<excludes>
351332
<exclude>io.netty:*</exclude>
352333
</excludes>

0 commit comments

Comments
 (0)