add since information (evaluated in the maven site)

git-svn-id: https://svn.apache.org/repos/asf/sling/trunk@1804120 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/main/java/org/apache/sling/maven/bundlesupport/FsMountMojo.java b/src/main/java/org/apache/sling/maven/bundlesupport/FsMountMojo.java
index 33b6063..c3c220d 100644
--- a/src/main/java/org/apache/sling/maven/bundlesupport/FsMountMojo.java
+++ b/src/main/java/org/apache/sling/maven/bundlesupport/FsMountMojo.java
@@ -51,6 +51,7 @@
 /**
  * Creates OSGi configurations for the
  * <a href="https://sling.apache.org/documentation/bundles/accessing-filesystem-resources-extensions-fsresource.html">Apache Sling File System Resource Provider</a>.
+ * @since 2.2.0
  */
 @Mojo(name = "fsmount", requiresProject = true)
 public class FsMountMojo extends AbstractFsMountMojo {
@@ -79,12 +80,14 @@
      * </ol>
      * 
      * This has precedence over the deprecated parameter {@link #usePut}.
+     * @since 2.3.0
      */
     @Parameter(property="sling.deploy.method", required = false, defaultValue = "WebConsole")
     private BundleDeploymentMethod deploymentMethod;
     
     /**
      * Deploy <code>org.apache.sling.fsresource</code> to Sling instance bundle when it is not deployed already.
+     * @since 2.3.0
      */
     @Parameter(required = false, defaultValue = "true")
     private boolean deployFsResourceBundle;
@@ -122,6 +125,7 @@
      *   &lt;/bundlePrerequisite&gt;
      * &lt;/deployFsResourceBundlePrerequisites&gt;
      * </pre>
+     * @since 2.3.0
      */
     @Parameter(required = false)
     private List<BundlePrerequisite> deployFsResourceBundlePrerequisites;
diff --git a/src/main/java/org/apache/sling/maven/bundlesupport/FsUnMountMojo.java b/src/main/java/org/apache/sling/maven/bundlesupport/FsUnMountMojo.java
index e3625fb..43bc967 100644
--- a/src/main/java/org/apache/sling/maven/bundlesupport/FsUnMountMojo.java
+++ b/src/main/java/org/apache/sling/maven/bundlesupport/FsUnMountMojo.java
@@ -27,6 +27,7 @@
 /**
  * Removes OSGi configurations for the 
  * <a href="https://sling.apache.org/documentation/bundles/accessing-filesystem-resources-extensions-fsresource.html">Apache Sling File System Resource Provider</a>.
+ * @since 2.2.0
  */
 @Mojo(name = "fsunmount", requiresProject = true)
 public class FsUnMountMojo extends AbstractFsMountMojo {