You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2019/04/01 17:03:19 UTC

[maven-javadoc-plugin] branch master updated: Add missing `@since` tags to sourceFile[Includes|Excludes]

This is an automated email from the ASF dual-hosted git repository.

rfscholte pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/maven-javadoc-plugin.git


The following commit(s) were added to refs/heads/master by this push:
     new edf34e3  Add missing `@since` tags to sourceFile[Includes|Excludes]
     new 54a1fe1  [MJAVADOC-350] Add missing `@since` tags to sourceFile[Includes|Excludes]
edf34e3 is described below

commit edf34e30bb6ac3c55a6abbc6af84e15e237e72d3
Author: Benedikt Ritter <br...@apache.org>
AuthorDate: Mon Apr 1 16:36:30 2019 +0200

    Add missing `@since` tags to sourceFile[Includes|Excludes]
---
 .../java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
index 10fcbcb..bf77ffc 100644
--- a/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
+++ b/src/main/java/org/apache/maven/plugins/javadoc/AbstractJavadocMojo.java
@@ -1702,6 +1702,8 @@ public abstract class AbstractJavadocMojo
     /**
      * Include filters on the source files. Default is **\/\*.java.
      * These are ignored if you specify subpackages or subpackage excludes.
+     *
+     * @since 2.9
      */
     @Parameter
     private List<String> sourceFileIncludes;
@@ -1709,6 +1711,8 @@ public abstract class AbstractJavadocMojo
     /**
      * exclude filters on the source files.
      * These are ignored if you specify subpackages or subpackage excludes.
+     *
+     * @since 2.9
      */
     @Parameter
     private List<String> sourceFileExcludes;