Skip to content

Commit

Permalink
Fix issue: apache/pulsar#23555.
Browse files Browse the repository at this point in the history
- Use jdk8
  • Loading branch information
visxu committed Nov 13, 2024
1 parent e66779e commit 60d7a01
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@
<lombok.version>1.18.20</lombok.version>
<puppycrawl.checkstyle.version>8.37</puppycrawl.checkstyle.version>

<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>8</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target>

<!--config keys to congiure test selection -->
<include>**/Test*.java,**/*Test.java,**/*Tests.java,**/*TestCase.java</include>
Expand Down
5 changes: 5 additions & 0 deletions pulsar-client-kafka-compat/pulsar-client-kafka-tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@

<description>Tests to verify the correct shading configuration for the pulsar-client-kafka wrapper</description>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@

<description>Tests to verify the correct shading configuration for the pulsar-client-kafka wrapper</description>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@

<description>Tests to verify the correct shading configuration for the pulsar-client-kafka wrapper</description>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>
<dependency>
<groupId>${project.groupId}</groupId>
Expand Down
5 changes: 5 additions & 0 deletions pulsar-client-kafka-compat/pulsar-client-kafka_0_8/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,11 @@

<description>Kafka client library that publishes and consumes messages on Pulsar topics</description>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>

<dependency>
Expand Down
5 changes: 5 additions & 0 deletions tests/pulsar-storm-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@
<packaging>jar</packaging>
<name>Pulsar Storm adapter Tests</name>

<properties>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>

<dependencies>

<dependency>
Expand Down

0 comments on commit 60d7a01

Please sign in to comment.