Skip to content

Commit

Permalink
Bump parent POM and fix trivial javadoc warning
Browse files Browse the repository at this point in the history
  • Loading branch information
ctubbsii committed Jul 23, 2024
1 parent 8997d1e commit b829304
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<parent>
<groupId>net.revelc.code</groupId>
<artifactId>revelc</artifactId>
<version>5</version>
<version>6</version>
</parent>
<artifactId>apilyzer-maven-plugin</artifactId>
<version>1.3.1-SNAPSHOT</version>
Expand All @@ -39,7 +39,10 @@
<maven>3.6.3</maven>
</prerequisites>
<scm>
<connection>scm:git:https://github.com/revelc/${github.site.repositoryName}.git</connection>
<developerConnection>scm:git:[email protected]:revelc/${github.site.repositoryName}.git</developerConnection>
<tag>HEAD</tag>
<url>https://github.com/revelc/${github.site.repositoryName}</url>
</scm>
<properties>
<formatter.configFile>contrib/eclipse-java-style.xml</formatter.configFile>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
*
* <p>This section of the configuration is ORed with the {@code <includes>} section. So if a class
* matches something in either section (and its not excluded), then its included in the API
Expand Down

0 comments on commit b829304

Please sign in to comment.