Skip to content

Commit 095151c

Browse files
author
Julien Ruaux
committed
refactor!: Renamed project
1 parent 29df920 commit 095151c

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

README.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
= Redis Kafka Connector
22
:linkattrs:
33
:project-owner: redis-field-engineering
4-
:project-name: redis-enterprise-kafka
4+
:project-name: redis-kafka-connect
55
:project-group: com.redis
66
:project-version: 6.8
77

docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ services:
5454
SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8081
5555

5656
connect:
57-
image: jruaux/redis-enterprise-kafka:latest
57+
image: jruaux/redis-kafka-connect:latest
5858
build:
5959
context: .
6060
dockerfile: Dockerfile

jreleaser.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
project:
2-
name: redis-enterprise-kafka
3-
description: Kafka Connector for Redis
2+
name: redis-kafka-connect
3+
description: Kafka Connector (Source and Sink) by Redis
44
longDescription: Kafka Connect source and sink connectors for Redis
5-
website: https://github.com/redis-field-engineering/redis-enterprise-kafka
5+
website: https://github.com/redis-field-engineering/redis-kafka-connect
66
authors:
77
- Julien Ruaux
88
license: Apache-2.0
@@ -46,21 +46,21 @@ announce:
4646
slack:
4747
active: release
4848
channel: '#field-engineering-announcements'
49-
message: '🔗 Redis Enterprise Kafka Connector {{projectVersion}} has been released! {{releaseNotesUrl}}'
49+
message: '🔗 Redis Kafka Connect {{projectVersion}} has been released! {{releaseNotesUrl}}'
5050

5151
distributions:
52-
redis-redis-enterprise-kafka-5:
52+
redis-redis-kafka-connect-5:
5353
type: binary
5454
artifacts:
5555
- path: target/components/packages/{{distributionName}}.{{projectVersion}}.zip
5656
transform: '{{distributionName}}.{{projectEffectiveVersion}}.zip'
57-
redis-redis-enterprise-kafka-6:
57+
redis-redis-kafka-connect-6:
5858
type: binary
5959
artifacts:
6060
- path: target/components/packages/{{distributionName}}.{{projectVersion}}.zip
6161
transform: '{{distributionName}}.{{projectEffectiveVersion}}.zip'
6262

6363
files:
6464
artifacts:
65-
- path: target/generated-docs/redis-enterprise-kafka-{{projectVersion}}.pdf
66-
transform: 'redis-enterprise-kafka-{{projectEffectiveVersion}}.pdf'
65+
- path: target/generated-docs/redis-kafka-connect-{{projectVersion}}.pdf
66+
transform: 'redis-kafka-connect-{{projectEffectiveVersion}}.pdf'

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@
55
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
66
<modelVersion>4.0.0</modelVersion>
77
<groupId>com.redis</groupId>
8-
<artifactId>redis-enterprise-kafka</artifactId>
8+
<artifactId>redis-kafka-connect</artifactId>
99
<version>6.9-SNAPSHOT</version>
1010
<name>Redis Kafka Connector</name>
1111
<description>Kafka Connect source and sink connectors for Redis</description>
1212
<url>https://github.com/${github.owner}/${github.repo}</url>
1313
<inceptionYear>2021</inceptionYear>
1414
<properties>
1515
<github.owner>redis-field-engineering</github.owner>
16-
<github.repo>redis-enterprise-kafka</github.repo>
16+
<github.repo>redis-kafka-connect</github.repo>
1717
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1818
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1919
<java.version>8</java.version>
@@ -282,7 +282,7 @@
282282
<sourceUrl>${project.scm.url}</sourceUrl>
283283
<supportProviderName>Redis</supportProviderName>
284284
<supportSummary>
285-
<![CDATA[Contact us on the <a href="https://forum.redis.com">Redis Forum</a> or create an issue on <a href="https://github.com/redis-field-engineering/redis-enterprise-kafka">Github</a> where we provide support on a good faith effort basis.]]>
285+
<![CDATA[Contact us on the <a href="https://forum.redis.com">Redis Forum</a> or create an issue on <a href="https://github.com/redis-field-engineering/redis-kafka-connect">Github</a> where we provide support on a good faith effort basis.]]>
286286
</supportSummary>
287287
<supportUrl>${project.issueManagement.url}</supportUrl>
288288
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
@@ -356,7 +356,7 @@
356356
<github-owner>${github.owner}</github-owner>
357357
<github-repo>${github.repo}</github-repo>
358358
<component-owner>redis</component-owner>
359-
<component-name>redis-enterprise-kafka</component-name>
359+
<component-name>redis-kafka-connect</component-name>
360360
<project-artifact>${project.artifactId}</project-artifact>
361361
<project-name>${project.name}</project-name>
362362
<project-version>${project.version}</project-version>
@@ -391,7 +391,7 @@
391391
</goals>
392392
<configuration>
393393
<backend>pdf</backend>
394-
<outputFile>redis-enterprise-kafka-${project.version}.pdf</outputFile>
394+
<outputFile>redis-kafka-connect-${project.version}.pdf</outputFile>
395395
<attributes>
396396
<doctype>book</doctype>
397397
<title-page></title-page>

run.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fi
1111
echo "Building the Redis Kafka Connector"
1212
(
1313
./mvnw clean package -DskipTests
14-
mv target/components/packages/redis-redis-enterprise-kafka-6.*.zip target/components/packages/redis-enterprise-kafka.zip
14+
mv target/components/packages/redis-redis-kafka-connect-6.*.zip target/components/packages/redis-kafka-connect.zip
1515
)
1616

1717
echo "Starting docker ."

src/test/integration/java/com/redis/kafka/connect/RedisSinkTaskIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ protected Collection<RedisServer> redisServers() {
6464
RedisModulesContainer.DEFAULT_IMAGE_NAME.withTag(RedisModulesContainer.DEFAULT_TAG)),
6565
new RedisEnterpriseContainer(
6666
RedisEnterpriseContainer.DEFAULT_IMAGE_NAME.withTag(RedisEnterpriseContainer.DEFAULT_TAG))
67-
.withDatabase(Database.name("RedisEnterpriseKafkaTests").memory(DataSize.ofMegabytes(100))
67+
.withDatabase(Database.name("RedisKafkaConnectTests").memory(DataSize.ofMegabytes(100))
6868
.ossCluster(true).modules(RedisModule.SEARCH, RedisModule.JSON, RedisModule.TIMESERIES)
6969
.build()));
7070
}

0 commit comments

Comments
 (0)