Skip to content

Commit caec99f

Browse files
NO-TICKET: Remove manual dispatch workflow and make lombok versions consistent across the modules (#110)
* removed manual dispatch workflow * Made lombok versions consistent
1 parent 472c837 commit caec99f

File tree

5 files changed

+10
-11
lines changed

5 files changed

+10
-11
lines changed

.github/workflows/publish.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ on:
44
release:
55
types:
66
- created
7-
workflow_dispatch:
87

98
jobs:
109
publish-artifacts:

kafka-event-listener/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ plugins {
77
}
88

99
dependencies {
10-
annotationProcessor("org.projectlombok:lombok:1.18.26")
11-
compileOnly("org.projectlombok:lombok:1.18.26")
10+
annotationProcessor("org.projectlombok:lombok:1.18.38")
11+
compileOnly("org.projectlombok:lombok:1.18.38")
1212

1313
api(platform(project(":kafka-bom")))
1414
api("org.apache.kafka:kafka-clients")

kafka-streams-framework/build.gradle.kts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ tasks.test {
1111
}
1212

1313
dependencies {
14-
annotationProcessor("org.projectlombok:lombok:1.18.26")
15-
compileOnly("org.projectlombok:lombok:1.18.26")
14+
annotationProcessor("org.projectlombok:lombok:1.18.38")
15+
compileOnly("org.projectlombok:lombok:1.18.38")
1616

1717
api(project(":kafka-streams-serdes"))
1818
api(platform(project(":kafka-bom")))
@@ -26,8 +26,8 @@ dependencies {
2626
implementation("org.hypertrace.core.serviceframework:platform-service-framework:0.1.89")
2727
implementation("org.apache.commons:commons-lang3:3.18.0")
2828

29-
testCompileOnly("org.projectlombok:lombok:1.18.26")
30-
testAnnotationProcessor("org.projectlombok:lombok:1.18.26")
29+
testCompileOnly("org.projectlombok:lombok:1.18.38")
30+
testAnnotationProcessor("org.projectlombok:lombok:1.18.38")
3131
testImplementation("org.apache.kafka:kafka-streams-test-utils")
3232
testImplementation("org.junit.jupiter:junit-jupiter:5.9.2")
3333
testImplementation("org.junit-pioneer:junit-pioneer:2.0.0")

kafka-streams-partitioners/avro-partitioners/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ tasks.test {
1313
dependencies {
1414
api(platform(project(":kafka-bom")))
1515

16-
annotationProcessor("org.projectlombok:lombok:1.18.24")
17-
compileOnly("org.projectlombok:lombok:1.18.24")
16+
annotationProcessor("org.projectlombok:lombok:1.18.38")
17+
compileOnly("org.projectlombok:lombok:1.18.38")
1818

1919
implementation("com.google.guava:guava:32.0.1-jre")
2020
implementation("org.apache.avro:avro")

kafka-streams-partitioners/weighted-group-partitioner/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ tasks.test {
1010
}
1111

1212
dependencies {
13-
annotationProcessor("org.projectlombok:lombok:1.18.24")
14-
compileOnly("org.projectlombok:lombok:1.18.24")
13+
annotationProcessor("org.projectlombok:lombok:1.18.38")
14+
compileOnly("org.projectlombok:lombok:1.18.38")
1515

1616
api(platform(project(":kafka-bom")))
1717
api("org.apache.kafka:kafka-streams")

0 commit comments

Comments
 (0)