Skip to content

Commit 8902142

Browse files
committed
Changed vendor and group names to reflect Redis Labs becoming just Redis
1 parent f018de0 commit 8902142

24 files changed

+66
-191
lines changed

README.adoc

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,13 @@
22
:linkattrs:
33
:project-owner: RedisLabs-Field-Engineering
44
:project-name: redis-enterprise-kafka
5-
:project-group: com.redislabs
5+
:project-group: com.redis
66
:project-version: 0.4.0
77
:site-url: https://redislabs-field-engineering.github.io/redis-enterprise-kafka
88

99
image:https://github.com/{project-owner}/{project-name}/actions/workflows/early-access.yml/badge.svg["Build Status", link="https://github.com/{project-owner}/{project-name}/actions"]
1010
image:https://codecov.io/gh/{project-owner}/{project-name}/branch/master/graph/badge.svg?token=MTMRRGEWBD["Coverage", link="https://codecov.io/gh/{project-owner}/{project-name}"]
1111

12-
---
13-
14-
Kafka Connect source and sink connectors for https://redislabs.com/redis-enterprise-software/overview/[Redis Enterprise]
12+
Kafka Connect source and sink connectors for https://redis.com/redis-enterprise-software/overview/[Redis Enterprise]
1513

1614
Refer to the link:{site-url}[documentation] for configuration and usage information.

docker/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ services:
8686
CONNECT_INTERNAL_KEY_CONVERTER: "org.apache.kafka.connect.json.JsonConverter"
8787
CONNECT_INTERNAL_VALUE_CONVERTER: "org.apache.kafka.connect.json.JsonConverter"
8888
CONNECT_LOG4J_ROOT_LOGLEVEL: "INFO"
89-
CONNECT_LOG4J_LOGGERS: "org.apache.kafka.connect.runtime.rest=WARN,org.reflections=ERROR,com.redislabs.kafka.connect=DEBUG"
89+
CONNECT_LOG4J_LOGGERS: "org.apache.kafka.connect.runtime.rest=WARN,org.reflections=ERROR,com.redis.kafka.connect=DEBUG"
9090
CONNECT_PLUGIN_PATH: /usr/share/confluent-hub-components
9191
CONNECT_ZOOKEEPER_CONNECT: 'zookeeper:2181'
9292
# Assumes image is based on confluentinc/kafka-connect-datagen:latest which is pulling 5.3.0 Connect image

docker/run.sh

Lines changed: 3 additions & 3 deletions
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 "redislabs-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-cp5-*" -mindepth 2 -maxdepth 2 -exec mv {} ./target/components/packages/redis-enterprise-kafka \;
1616
)
1717

1818
echo "Starting docker ."
@@ -87,7 +87,7 @@ echo -e "\nAdding Redis Enteprise Kafka Sink Connector for the 'pageviews' topic
8787
curl -X POST -H "Content-Type: application/json" --data '
8888
{"name": "redis-enterprise-sink",
8989
"config": {
90-
"connector.class":"com.redislabs.kafka.connect.RedisEnterpriseSinkConnector",
90+
"connector.class":"com.redis.kafka.connect.RedisEnterpriseSinkConnector",
9191
"tasks.max":"1",
9292
"topics":"pageviews",
9393
"redis.uri":"redis://redis:6379",
@@ -102,7 +102,7 @@ curl -X POST -H "Content-Type: application/json" --data '
102102
{"name": "redis-enterprise-source",
103103
"config": {
104104
"tasks.max":"1",
105-
"connector.class":"com.redislabs.kafka.connect.RedisEnterpriseSourceConnector",
105+
"connector.class":"com.redis.kafka.connect.RedisEnterpriseSourceConnector",
106106
"redis.uri":"redis://redis:6379",
107107
"redis.stream.name":"mystream",
108108
"topic": "mystream"

pom.xml

Lines changed: 15 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@
33
xmlns="http://maven.apache.org/POM/4.0.0"
44
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
55
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.redislabs</groupId>
6+
<groupId>com.redis</groupId>
77
<artifactId>redis-enterprise-kafka</artifactId>
88
<version>0.4.1-SNAPSHOT</version>
99
<name>Redis Enterprise Kafka Connector</name>
1010
<description>Kafka Connect source and sink connectors for Redis Enterprise</description>
11-
<url>https://github.com/RedisLabs-Field-Engineering/redis-enterprise-kafka</url>
11+
<url>https://github.com/${github.owner}/${github.repo}</url>
1212
<inceptionYear>2021</inceptionYear>
1313
<properties>
14+
<github.owner>RedisLabs-Field-Engineering</github.owner>
15+
<github.repo>redis-enterprise-kafka</github.repo>
1416
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
1517
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
1618
<java.version>8</java.version>
@@ -42,14 +44,14 @@
4244
</developer>
4345
</developers>
4446
<scm>
45-
<connection>scm:git:https://github.com/RedisLabs-Field-Engineering/redis-enterprise-kafka.git</connection>
46-
<developerConnection>scm:git:git@github.com:RedisLabs-Field-Engineering/redis-enterprise-kafka.git
47+
<connection>scm:git:https://github.com/${github.owner}/${github.repo}.git</connection>
48+
<developerConnection>scm:git:git@github.com:${github.owner}/${github.repo}.git
4749
</developerConnection>
48-
<url>https://github.com/RedisLabs-Field-Engineering/redis-enterprise-kafka</url>
50+
<url>https://github.com/${github.owner}/${github.repo}</url>
4951
</scm>
5052
<issueManagement>
5153
<system>github</system>
52-
<url>https://github.com/RedisLabs-Field-Engineering/redis-enterprise-kafka/issues</url>
54+
<url>https://github.com/${github.owner}/${github.repo}/issues</url>
5355
</issueManagement>
5456
<repositories>
5557
<repository>
@@ -278,15 +280,15 @@
278280
<version>0.12.0</version>
279281
<configuration>
280282
<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>
283+
<documentationUrl>https://redislabs-field-engineering.github.io/${github.repo}/</documentationUrl>
284+
<ownerLogo>src/docs/asciidoc/images/logo-redis.svg</ownerLogo>
285+
<ownerName>Redis</ownerName>
286+
<ownerUrl>https://redis.com</ownerUrl>
285287
<sourceUrl>${project.scm.url}</sourceUrl>
286-
<supportProviderName>Redis Labs</supportProviderName>
288+
<supportProviderName>Redis</supportProviderName>
287289
<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+
<![CDATA[This connector is <a href="https://redis.com/company/support/">supported by Redis</a> as part of a
291+
<a href="https://redis.com/redis-enterprise">Redis Enterprise</a> license.]]>
290292
</supportSummary>
291293
<supportUrl>${project.issueManagement.url}</supportUrl>
292294
<confluentControlCenterIntegration>true</confluentControlCenterIntegration>
Lines changed: 1 addition & 0 deletions
Loading

0 commit comments

Comments
 (0)