Skip to content

Releases: QuasarByte/llm-code-review-maven-plugin

0.1.0-SNAPSHOT

07 Jun 19:13

Choose a tag to compare

0.1.0-SNAPSHOT Pre-release
Pre-release
Add Maven profile for JAXB support on JDK 11+ (temporary workaround)

- Introduced a 'jdk-11-plus' Maven profile that automatically adds legacy JAXB dependencies
  (javax.xml.bind and com.sun.xml.bind) when building with JDK 11 or higher.
- This is a temporary solution for restoring JAXB functionality, since JAXB was removed from the JDK after Java 8.
- For long-term support and compatibility with newer Java versions (17, 21+),
  migration to the 'jakarta.xml.bind' API (jakarta.xml.bind:jakarta.xml.bind-api and org.glassfish.jaxb:jaxb-runtime)
  is recommended.
- See profile comments in pom.xml for details and migration links.