Skip to content
Merged
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
7 changes: 7 additions & 0 deletions spi-subtypes/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,13 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<!-- JDK 23+ disables annotation processing by default;
need to re-enable for @AutoService to generate
META-INF/services files during test compilation
-->
<proc>full</proc>
</configuration>
</plugin>
<!-- 19-Jan-2026: Tests must run on classpath (not module path)
because ServiceLoader.load() requires caller module to
Expand Down