Skip to content

Commit

Permalink
no need of those tags
Browse files Browse the repository at this point in the history
Signed-off-by: olivier lamy <[email protected]>
  • Loading branch information
olamy committed Jul 3, 2020
1 parent 3330514 commit 29101e7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ public class CheckSignatureRule
/**
* Signature module to use.
*
* @required
* @parameter
* //required
* //parameter
*/
protected Signature signature;

/**
* Class names to ignore signatures for (wildcards accepted).
*
* @parameter
* //parameter
*/
protected String[] ignores;

Expand All @@ -86,7 +86,7 @@ public class CheckSignatureRule
* By default {@value SignatureChecker#ANNOTATION_FQN} and
* {@value SignatureChecker#PREVIOUS_ANNOTATION_FQN} are used.
*
* @parameter
* //parameter
* @see SignatureChecker#ANNOTATION_FQN
* @see SignatureChecker#PREVIOUS_ANNOTATION_FQN
*/
Expand All @@ -95,7 +95,7 @@ public class CheckSignatureRule
/**
* Should dependencies be ignored.
*
* @parameter default-value="true"
* //parameter default-value="true"
*/
protected boolean ignoreDependencies = true;

Expand All @@ -110,7 +110,7 @@ public class CheckSignatureRule
* <li><code>groupId:artifactId:type:classifier:version</code></li>
* </ul>
*
* @parameter
* //parameter
* @since 1.12
*/
private String[] includeDependencies = null;
Expand All @@ -126,15 +126,15 @@ public class CheckSignatureRule
* <li><code>groupId:artifactId:type:classifier:version</code></li>
* </ul>
*
* @parameter
* //parameter
* @since 1.12
*/
private String[] excludeDependencies = null;

/**
* Should test classes be checked.
*
* @parameter default-value="true"
* //parameter default-value="true"
* @since 1.19
*/
private boolean checkTestClasses = true;
Expand Down
5 changes: 4 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.0.0</version>
<version>3.2.0</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
Expand Down

0 comments on commit 29101e7

Please sign in to comment.