Skip to content

Commit 7fee8c7

Browse files
authored
Try fixing JDK 24 build (#328)
1 parent a54bc13 commit 7fee8c7

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

spi-subtypes/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,13 @@
5858
<plugin>
5959
<groupId>org.apache.maven.plugins</groupId>
6060
<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>
6168
</plugin>
6269
<!-- 19-Jan-2026: Tests must run on classpath (not module path)
6370
because ServiceLoader.load() requires caller module to

0 commit comments

Comments
 (0)