Skip to content

Commit

Permalink
Downgrade to Java 21 due to raphw/byte-buddy#1609 bug
Browse files Browse the repository at this point in the history
  • Loading branch information
EdAddario committed Apr 14, 2024
1 parent 0259297 commit 835b635
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
7 changes: 6 additions & 1 deletion blocking-gateway/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
<description>blocking-gateway</description>

<properties>
<java.version>22</java.version>
<java.version>21</java.version>
<maven.compiler.source>${java.version}</maven.compiler.source>
<maven.compiler.target>${java.version}</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>

<dependencies>
Expand Down Expand Up @@ -63,6 +66,8 @@
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>${maven.compiler.source}</source>
<target>${maven.compiler.target}</target>
<compilerArgs>
<arg>--enable-preview</arg>
</compilerArgs>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<description>reactor-performance</description>

<properties>
<java.version>22</java.version>
<java.version>21</java.version>
</properties>

<packaging>pom</packaging>
Expand Down

0 comments on commit 835b635

Please sign in to comment.