Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion google-cloud-jar-parent/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@
<dependency>
<groupId>net.bytebuddy</groupId>
<artifactId>byte-buddy</artifactId>
<version>1.17.0</version>
<version>1.18.8-jdk5</version>
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Byte Buddy 1.18.7 introduced a new versioning scheme where the regular version (e.g., 1.18.8) targets Java 8 as a baseline, while the -jdk5 suffix is specifically for backwards compatibility with older environments. Since this project targets Java 8 or higher, it is recommended to use the standard 1.18.8 version to align with the library's intended distribution for modern Java environments and avoid using the legacy-compatible variant unnecessarily.

Suggested change
<version>1.18.8-jdk5</version>
<version>1.18.8</version>

<scope>test</scope>
</dependency>
<dependency>
Expand Down
Loading