Skip to content

Commit 819d2c2

Browse files
committed
Rename project
1 parent 689ea56 commit 819d2c2

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

README.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
1-
# Aiven Kafka Connect Transformations
1+
# Aiven Transformations for Apache Kafka Connect
22

3-
[![Build Status](https://travis-ci.org/aiven/aiven-kafka-connect-transforms.svg?branch=master)](https://travis-ci.org/aiven/aiven-kafka-connect-transforms)
4-
5-
This is a set of [Kafka Connect transformations](https://kafka.apache.org/documentation/#connect_transforms).
3+
A collection of [Single Message Transformations (SMTs)](https://kafka.apache.org/documentation/#connect_transforms) for Apache Kafka Connect.
64

75
## Transformations
86

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ test {
135135
}
136136

137137
processResources {
138-
filesMatching('aiven-kafka-connect-transforms-version.properties') {
138+
filesMatching('transforms-for-apache-kafka-connect-version.properties') {
139139
expand(version: version)
140140
}
141141
}
@@ -239,7 +239,7 @@ task releasePush() {
239239
}
240240

241241
doLast {
242-
def githubRepo = 'https://github.com/aiven/aiven-kafka-connect-transforms'
242+
def githubRepo = 'https://github.com/aiven/transforms-for-apache-kafka-connect'
243243

244244
grgit.push(tags: false, dryRun: false)
245245
grgit.push(tags: true, dryRun: false)

settings.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
rootProject.name = 'aiven-kafka-connect-transforms'
1+
rootProject.name = 'transforms-for-apache-kafka-connect'

src/integration-test/java/io/aiven/kafka/connect/transforms/IntegrationTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,14 @@ final class IntegrationTest {
6868

6969
@BeforeAll
7070
static void setUpAll() throws IOException, InterruptedException {
71-
final File testDir = Files.createTempDirectory("aiven-kafka-connect-transforms-test-").toFile();
71+
final File testDir = Files.createTempDirectory("transforms-for-apache-kafka-connect-test-").toFile();
7272
testDir.deleteOnExit();
7373

7474
pluginsDir = new File(testDir, "plugins/");
7575
assert pluginsDir.mkdirs();
7676

7777
// Unpack the library distribution.
78-
final File transformDir = new File(pluginsDir, "aiven-kafka-connect-transforms/");
78+
final File transformDir = new File(pluginsDir, "transforms-for-apache-kafka-connect/");
7979
assert transformDir.mkdirs();
8080
final File distFile = new File(System.getProperty("integration-test.distribution.file.path"));
8181
assert distFile.exists();
File renamed without changes.

0 commit comments

Comments
 (0)