This is an automated email from the ASF dual-hosted git repository. struberg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/deltaspike.git
commit 48fbfea1ef93da80f2e8b620808332be4cef66f4 Author: Mark Struberg <[email protected]> AuthorDate: Fri Mar 29 15:33:06 2024 +0100 fix javadoc --- .../deltaspike/jsf/api/config/JsfModuleConfig.java | 6 ++--- .../jsf/spi/scope/window/ClientWindowConfig.java | 12 +++++----- deltaspike/pom.xml | 28 +++------------------- 3 files changed, 12 insertions(+), 34 deletions(-) diff --git a/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/api/config/JsfModuleConfig.java b/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/api/config/JsfModuleConfig.java index d8af85d0d..f7b111614 100644 --- a/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/api/config/JsfModuleConfig.java +++ b/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/api/config/JsfModuleConfig.java @@ -91,11 +91,11 @@ public class JsfModuleConfig implements DeltaSpikeConfig } /** - * Defines the {@link jakarta.enterprise.Qualifier} which will be used to fire the - * {@link org.apache.deltaspike.core.api.exception.control.event.ExceptionToCatchEvent} + * Defines the {@link jakarta.inject.Qualifier} which will be used for the + * FacesContextWrapper ExceptionHandler * for unhandled JSF exceptions. * - * @return the {@link jakarta.enterprise.Qualifier}. + * @return the {@link jakarta.inject.Qualifier}. */ public Class<? extends Annotation> getExceptionQualifier() { diff --git a/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/spi/scope/window/ClientWindowConfig.java b/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/spi/scope/window/ClientWindowConfig.java index c63dcd102..60ffbbb40 100644 --- a/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/spi/scope/window/ClientWindowConfig.java +++ b/deltaspike/modules/jsf/api/src/main/java/org/apache/deltaspike/jsf/spi/scope/window/ClientWindowConfig.java @@ -82,18 +82,18 @@ public interface ClientWindowConfig extends Serializable String getClientWindowHtml(); /** - * @return Whether the DOM tree should stored in the localStorage for the windowhandler.html + * @return Whether the DOM tree should store in the localStorage for the windowhandler.html * when clicking on a link. - * Currently it's only used by {@link ClientWindowRenderMode#CLIENTWINDOW}. - * @see windowhandler.html + * Currently, it's only used by {@link ClientWindowRenderMode#CLIENTWINDOW}. + * See windowhandler.html */ boolean isClientWindowStoreWindowTreeEnabledOnLinkClick(); /** - * @return Whether the DOM tree should stored in the localStorage for the windowhandler.html + * @return Whether the DOM tree should store in the localStorage for the windowhandler.html * when clicking on a button. - * Currently it's only used by {@link ClientWindowRenderMode#CLIENTWINDOW}. - * @see windowhandler.html + * Currently, it's only used by {@link ClientWindowRenderMode#CLIENTWINDOW}. + * See windowhandler.html */ boolean isClientWindowStoreWindowTreeEnabledOnButtonClick(); diff --git a/deltaspike/pom.xml b/deltaspike/pom.xml index f494d9b2c..9556fdc55 100644 --- a/deltaspike/pom.xml +++ b/deltaspike/pom.xml @@ -102,11 +102,12 @@ <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> - <version>3.3.2</version> + <version>3.6.3</version> <configuration> <charset>UTF-8</charset> - <detectLinks>true</detectLinks> + <detectLinks>false</detectLinks> <source>11</source> + <doclint>none</doclint> <excludePackageNames>org.apache.deltaspike.example.*:org.apache.deltaspike.playground*:org.apache.deltaspike.test.*:org.apache.deltaspike.cdise.tck*:org.apache.deltaspike.cdise.servlet*:*impl*</excludePackageNames> <groups> <group> @@ -191,27 +192,4 @@ </plugins> </build> - <profiles> - <profile> - <!-- It disables javadoc doclint for JDK > 8 --> - <id>javadoc-xdoclint-disable-jdk8+</id> - <activation> - <jdk>[1.8,)</jdk> - </activation> - <build> - <pluginManagement> - <plugins> - <plugin> - <groupId>org.apache.maven.plugins</groupId> - <artifactId>maven-javadoc-plugin</artifactId> - <configuration> - <additionalJOption>-Xdoclint:none</additionalJOption> - </configuration> - </plugin> - </plugins> - </pluginManagement> - </build> - </profile> - - </profiles> </project>
