-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add compatibility with Java 21 (#1655)
* Bumped ByteBuddy-Version and fixed Lambda-Problem in InstrumentationConfigurationResolver. * - Added Java 21 to Agent Test Matrix - Made Lambda-Check simpler * bumped gradle-version to 8.7 * made java 21 test independend. * test-workflow update. * moved docker plugin version to props. * updated workflow * changed jdk determination step to bash * clean gradle cache before executing assemble. * changed default wrapper to 8.7 * added DockerPlugin-Version to clean-step * added Downgrade Step for Java 8 * cahnged order of clean and downgrade * set shell to bash * deleted property from downgrade step. * Chaynged to other downgrade strat. * Downgraded Default Gradle Version * Downgraded Default Palantir Docker Version * add comments * change image * update spring config * fix: more lambda-problems solved * fix: auto-tracing test for java 21 * fix: auto-tracing test for java 21 * fix: HttpInMetric test for java 21 and AutoTracing for IBM JDK * fix: disable debug log might solve oom-issue on ibm-java * fix: changed max-heap-size for systemTest --------- Co-authored-by: EddeCCC <eduard.schander@gmx.de>
- Loading branch information
1 parent
34c61db
commit f3ec22b
Showing
15 changed files
with
94 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Select Docker Plugin Version | ||
# For JDK Version < 21 we need to set this to "0.34.0" | ||
# For JDK Version >= 21 we need to set this to "0.36.0" | ||
# Above, we need "0.36.0". Cause this is experimental, we will keep it at 0.34.0 for now. | ||
comPalantirDockerVersion=0.34.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,4 +22,4 @@ if(JavaVersion.current().isCompatibleWith(JavaVersion.VERSION_17)) { | |
} | ||
} | ||
} | ||
} | ||
} |