Skip to content

Commit

Permalink
Fix lombok scope in 2.6.x (#5084)
Browse files Browse the repository at this point in the history
* Ensure lombok is provided scope

* Add lombok to integration-tests
  • Loading branch information
EricWittmann authored Aug 27, 2024
1 parent e8371d9 commit d759d6b
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 6 deletions.
2 changes: 1 addition & 1 deletion app/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
Expand Down
2 changes: 1 addition & 1 deletion common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down
1 change: 1 addition & 0 deletions examples/debezium-openshift/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>

</dependencies>
Expand Down
1 change: 1 addition & 0 deletions examples/tools/kafkasql-topic-import/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.28</version>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down
8 changes: 7 additions & 1 deletion integration-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,13 @@
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-client</artifactId>
</dependency>

<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>

<dependency>
<groupId>io.apicurio</groupId>
<artifactId>apicurio-tenant-manager-client</artifactId>
Expand Down Expand Up @@ -96,7 +103,6 @@
<artifactId>apicurio-registry-utils-converter</artifactId>
<scope>test</scope>
</dependency>
<!-- Test Only -->
<dependency>
<groupId>io.confluent</groupId>
<artifactId>kafka-avro-serializer</artifactId>
Expand Down
1 change: 1 addition & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -628,6 +628,7 @@
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>${lombok.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.santuario</groupId>
Expand Down
2 changes: 1 addition & 1 deletion schema-util/common/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down
2 changes: 1 addition & 1 deletion schema-util/json/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>compile</scope>
<scope>provided</scope>
</dependency>

<dependency>
Expand Down
8 changes: 7 additions & 1 deletion schema-util/protobuf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@
<groupId>io.apicurio</groupId>
<artifactId>apicurio-registry-protobuf-schema-utilities</artifactId>
</dependency>


<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<scope>provided</scope>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit d759d6b

Please sign in to comment.