File tree Expand file tree Collapse file tree 5 files changed +7
-9
lines changed
integration-test/java/io/aiven/kafka/connect/transforms Expand file tree Collapse file tree 5 files changed +7
-9
lines changed Original file line number Diff line number Diff line change 1
- # Aiven Kafka Connect Transformations
1
+ # Aiven Transformations for Apache Kafka Connect
2
2
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.
6
4
7
5
## Transformations
8
6
Original file line number Diff line number Diff line change @@ -135,7 +135,7 @@ test {
135
135
}
136
136
137
137
processResources {
138
- filesMatching(' aiven- kafka-connect-transforms -version.properties' ) {
138
+ filesMatching(' transforms-for-apache- kafka-connect-version.properties' ) {
139
139
expand(version : version)
140
140
}
141
141
}
@@ -239,7 +239,7 @@ task releasePush() {
239
239
}
240
240
241
241
doLast {
242
- def githubRepo = ' https://github.com/aiven/aiven- kafka-connect-transforms '
242
+ def githubRepo = ' https://github.com/aiven/transforms-for-apache- kafka-connect'
243
243
244
244
grgit. push(tags : false , dryRun : false )
245
245
grgit. push(tags : true , dryRun : false )
Original file line number Diff line number Diff line change 1
- rootProject. name = ' aiven- kafka-connect-transforms '
1
+ rootProject. name = ' transforms-for-apache- kafka-connect'
Original file line number Diff line number Diff line change @@ -68,14 +68,14 @@ final class IntegrationTest {
68
68
69
69
@ BeforeAll
70
70
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 ();
72
72
testDir .deleteOnExit ();
73
73
74
74
pluginsDir = new File (testDir , "plugins/" );
75
75
assert pluginsDir .mkdirs ();
76
76
77
77
// 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/" );
79
79
assert transformDir .mkdirs ();
80
80
final File distFile = new File (System .getProperty ("integration-test.distribution.file.path" ));
81
81
assert distFile .exists ();
File renamed without changes.
You can’t perform that action at this time.
0 commit comments