We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a54bc13 commit 7fee8c7Copy full SHA for 7fee8c7
1 file changed
spi-subtypes/pom.xml
@@ -58,6 +58,13 @@
58
<plugin>
59
<groupId>org.apache.maven.plugins</groupId>
60
<artifactId>maven-compiler-plugin</artifactId>
61
+ <configuration>
62
+ <!-- JDK 23+ disables annotation processing by default;
63
+ need to re-enable for @AutoService to generate
64
+ META-INF/services files during test compilation
65
+ -->
66
+ <proc>full</proc>
67
+ </configuration>
68
</plugin>
69
<!-- 19-Jan-2026: Tests must run on classpath (not module path)
70
because ServiceLoader.load() requires caller module to
0 commit comments