File tree 3 files changed +10
-2
lines changed
3 files changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ integration-test:
29
29
30
30
.PHONY : build # Builds artifacts
31
31
build :
32
- @./gradlew clean build
32
+ @./gradlew clean build -Pversion= $( VERSION )
33
33
34
34
.PHONY : static-analysis # Analyzes the build
35
35
static-analysis :
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ This connector helps with that use case.
21
21
22
22
Use the version of your choice.
23
23
24
- e.g. ` curl -O https://repo1.maven.org/maven2/com/segence/kafka/connect/kafka-connect-kafka/0.1.0-dev.4 /kafka-connect-kafka-0.1.0-dev.4 .jar `
24
+ e.g. ` curl -O https://repo1.maven.org/maven2/com/segence/kafka/connect/kafka-connect-kafka/0.1.0-dev.6 /kafka-connect-kafka-0.1.0-dev.6 .jar `
25
25
26
26
2 . Copy it under the CLASSPATH of the Kafka Connect installation so that the plugin can be loaded.
27
27
Original file line number Diff line number Diff line change 9
9
targetCompatibility = JavaVersion . VERSION_17
10
10
}
11
11
12
+ jar {
13
+ manifest {
14
+ attributes(
15
+ ' Implementation-Version' : version
16
+ )
17
+ }
18
+ }
19
+
12
20
test {
13
21
useJUnitPlatform {
14
22
testLogging {
You can’t perform that action at this time.
0 commit comments