Skip to content

Commit

Permalink
Include JDK21 and above in the plugin configuration range.
Browse files Browse the repository at this point in the history
trying to address raphw/byte-buddy#1396 as well.

PiperOrigin-RevId: 572035592
Change-Id: I9f6fe1ad19c78384ac5be7a4a147420aaf7363a5
  • Loading branch information
ludoch authored and gae-java-bot committed Oct 9, 2023
1 parent 7e84479 commit ad8a2d1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 5 additions & 2 deletions appengine_testing_tests/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
<profile>
<id>surefire-newerjava</id>
<activation>
<jdk>[11,20)</jdk>
<jdk>[11,)</jdk>
</activation>
<build>
<plugins>
Expand All @@ -85,7 +85,10 @@
-Duser.timezone=CST
--add-opens java.base/java.lang=ALL-UNNAMED
</argLine>
</configuration>
<systemPropertyVariables>
<net.bytebuddy.experimental>true</net.bytebuddy.experimental>
</systemPropertyVariables>
</configuration>
</plugin>
</plugins>
</build>
Expand Down
3 changes: 2 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -235,8 +235,9 @@
<systemPropertyVariables>
<appengine.runtime.dir>../deployment/target/runtime-deployment-${project.version}</appengine.runtime.dir>
<com.google.apphosting.runtime.jetty94.LEGACY_MODE>true</com.google.apphosting.runtime.jetty94.LEGACY_MODE>
<net.bytebuddy.experimental>true</net.bytebuddy.experimental>
</systemPropertyVariables>
<argLine>
<argLine>
--add-opens java.base/java.lang=ALL-UNNAMED
--add-opens java.base/java.nio.charset=ALL-UNNAMED
--add-opens java.base/java.util.concurrent=ALL-UNNAMED
Expand Down

0 comments on commit ad8a2d1

Please sign in to comment.