We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83f3dff commit 6513abbCopy full SHA for 6513abb
README.md
@@ -12,3 +12,13 @@ Plexus Java:
12
13
* [](https://search.maven.org/artifact/org.codehaus.plexus/plexus-java)
14
15
+## Module Parsing Implementations
16
+
17
+Plexus Java uses a multi-release JAR to provide optimal module-info parsing for different Java versions:
18
19
+- **Java 8**: ASM-based parser for module-info.class files
20
+- **Java 9-21**: Native `java.lang.module.ModuleDescriptor` API
21
+- **Java 22+**: Java Class File API (JEP 457/466/484)
22
23
+The appropriate implementation is automatically selected based on the runtime JVM version.
24
0 commit comments