Skip to content

Commit 5bf85db

Browse files
committed
apidocs validation fixes
Signed-off-by: Maxim Nesen <senivam@gmail.com>
1 parent 9d73f40 commit 5bf85db

File tree

5 files changed

+12
-3
lines changed

5 files changed

+12
-3
lines changed

.github/workflows/validate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#
2-
# Copyright (c) 2024 Contributors to the Eclipse Foundation
2+
# Copyright (c) 2024, 2025 Contributors to the Eclipse Foundation
33
#
44
# This program and the accompanying materials are made available under the
55
# terms of the Eclipse Public License v. 2.0 which is available at
@@ -15,7 +15,7 @@ name: "Validate"
1515
on: [pull_request, push]
1616

1717
env:
18-
JAVA_VERSION: '21'
18+
JAVA_VERSION: '17'
1919
JAVA_DISTRO: 'temurin'
2020

2121
concurrency:

connectors/helidon-connector/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@
8282
<artifactId>maven-javadoc-plugin</artifactId>
8383
<configuration>
8484
<skip>${javadoc.skip}</skip>
85+
<legacyMode>true</legacyMode>
8586
</configuration>
8687
</plugin>
8788
</plugins>

core-common/src/main/java/module-info.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
org.glassfish.jersey.container.grizzly2.http,
7474
org.glassfish.jersey.container.servlet,
7575
org.glassfish.jersey.container.jetty.http,
76+
org.glassfish.jersey.container.helidon,
7677
org.glassfish.jersey.media.sse,
7778
org.glassfish.jersey.media.jaxb,
7879
org.glassfish.jersey.media.json.jackson,

etc/scripts/apidocs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
mvn -U -V -B clean install -Ppre-release -Pstaging -pl :apidocs -am -DskipTests
3+
mvn -U -V -B clean install javadoc:jar -Ppre-release -Pstaging -pl :apidocs -am -DskipTests

incubator/gae-integration/pom.xml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,13 @@
8484
</instructions>
8585
</configuration>
8686
</plugin>
87+
<plugin>
88+
<groupId>org.apache.maven.plugins</groupId>
89+
<artifactId>maven-javadoc-plugin</artifactId>
90+
<configuration>
91+
<legacyMode>true</legacyMode>
92+
</configuration>
93+
</plugin>
8794
</plugins>
8895
</build>
8996
</project>

0 commit comments

Comments
 (0)