From b829304157869f5e83e81f187a6630fa8413d9bc Mon Sep 17 00:00:00 2001 From: Christopher Tubbs Date: Tue, 23 Jul 2024 16:12:37 -0400 Subject: [PATCH] Bump parent POM and fix trivial javadoc warning --- pom.xml | 5 ++++- .../net/revelc/code/apilyzer/maven/plugin/AnalyzeMojo.java | 6 +++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 9d644dc..1091c76 100644 --- a/pom.xml +++ b/pom.xml @@ -19,7 +19,7 @@ net.revelc.code revelc - 5 + 6 apilyzer-maven-plugin 1.3.1-SNAPSHOT @@ -39,7 +39,10 @@ 3.6.3 + scm:git:https://github.com/revelc/${github.site.repositoryName}.git + scm:git:git@github.com:revelc/${github.site.repositoryName}.git HEAD + https://github.com/revelc/${github.site.repositoryName} contrib/eclipse-java-style.xml diff --git a/src/main/java/net/revelc/code/apilyzer/maven/plugin/AnalyzeMojo.java b/src/main/java/net/revelc/code/apilyzer/maven/plugin/AnalyzeMojo.java index f520ab9..41a9baf 100644 --- a/src/main/java/net/revelc/code/apilyzer/maven/plugin/AnalyzeMojo.java +++ b/src/main/java/net/revelc/code/apilyzer/maven/plugin/AnalyzeMojo.java @@ -185,9 +185,9 @@ public class AnalyzeMojo extends AbstractMojo { * This option enables including classes in your public API definition based on class level * annotations. This option takes one or more regular expression. Annotations are discovered using * reflection, so annotations scoped to compile may not be seen. For each regular expression - * {@link String#matches(String)} is called on the output of {@link Annotation#toString()}. If any - * annotation matches any regular expression and it does not match any exclusion, then its - * included as an API type. + * {@link java.lang.String#matches(java.lang.String)} is called on the output of + * {@link Annotation#toString()}. If any annotation matches any regular expression and it does not + * match any exclusion, then its included as an API type. * *

This section of the configuration is ORed with the {@code } section. So if a class * matches something in either section (and its not excluded), then its included in the API