Skip to content

Commit

Permalink
Fixes #247 (#248)
Browse files Browse the repository at this point in the history
* Move lombok scope from compile to provided
* Remove lombok-utils as it doesn't exist in newer versions anymore
  • Loading branch information
NersesAM authored Mar 8, 2023
1 parent c77e70c commit c1da66a
Show file tree
Hide file tree
Showing 10 changed files with 32 additions and 16 deletions.
6 changes: 6 additions & 0 deletions avro-flink-serde/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,12 @@
<artifactId>schema-registry-serde</artifactId>
<version>1.1.15</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.26</version>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>software.amazon.glue</groupId>
Expand Down
4 changes: 4 additions & 0 deletions avro-kafkaconnect-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,10 @@
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,6 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-utils</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down
4 changes: 0 additions & 4 deletions examples/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,10 +77,6 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-utils</artifactId>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,10 @@
<artifactId>schema-registry-kafkastreams-serde</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>software.amazon.awssdk</groupId>
<artifactId>kinesis</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions jsonschema-kafkaconnect-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@
<artifactId>schema-registry-serde</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions kafkastreams-serde/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,10 @@
<artifactId>schema-registry-serde</artifactId>
<version>${parent.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
Expand Down
9 changes: 2 additions & 7 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,7 @@
<log4j.version>2.17.1</log4j.version>
<jupiter.version>5.6.2</jupiter.version>
<mockito.version>3.3.3</mockito.version>
<lombok.version>1.18.20</lombok.version>
<lombok.utils.version>1.18.12</lombok.utils.version>
<lombok.version>1.18.26</lombok.version>
<hamcrest.version>1.1</hamcrest.version>
<!-- LATEST KCL Does not work with LocalStack yet, remove once new version works -->
<kinesis.client.version>2.2.9</kinesis.client.version>
Expand Down Expand Up @@ -236,11 +235,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok-utils</artifactId>
<version>${lombok.utils.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.kjetland</groupId>
Expand Down
5 changes: 4 additions & 1 deletion protobuf-kafkaconnect-converter/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,10 @@
<artifactId>schema-registry-serde</artifactId>
<version>${parent.version}</version>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>connect-api</artifactId>
Expand Down
4 changes: 4 additions & 0 deletions serializer-deserializer/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,10 @@
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
</dependency>
<dependency>
<groupId>com.kjetland</groupId>
<artifactId>mbknor-jackson-jsonschema_2.12</artifactId>
Expand Down

0 comments on commit c1da66a

Please sign in to comment.