Skip to content

Commit 8e721ef

Browse files
mtopolnikclaude
andcommitted
Bump javadoc plugin source level to Java 17
The maven-javadoc-plugin had <source>11</source> in both the "javadoc" and "maven-central-release" profiles, while the compiler targets Java 17. This mismatch caused javadoc generation to fail on Java 17 syntax such as switch expressions with arrow labels. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 932cafe commit 8e721ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

core/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@
198198
</executions>
199199
<configuration>
200200
<doclint>none</doclint>
201-
<source>11</source>
201+
<source>17</source>
202202
<detectJavaApiLink>false</detectJavaApiLink>
203203
<additionalJOptions>
204204
<additionalJOption>${compilerArg1}</additionalJOption>
@@ -296,7 +296,7 @@
296296
</executions>
297297
<configuration>
298298
<doclint>none</doclint>
299-
<source>11</source>
299+
<source>17</source>
300300
<detectJavaApiLink>false</detectJavaApiLink>
301301
<additionalJOptions>
302302
<additionalJOption>${compilerArg1}</additionalJOption>

0 commit comments

Comments
 (0)