You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by hb...@apache.org on 2011/10/16 21:46:15 UTC

svn commit: r1184910 - /maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java

Author: hboutemy
Date: Sun Oct 16 19:46:15 2011
New Revision: 1184910

URL: http://svn.apache.org/viewvc?rev=1184910&view=rev
Log:
ordered THREAD_SAFE constant

Modified:
    maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java

Modified: maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java?rev=1184910&r1=1184909&r2=1184910&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java Sun Oct 16 19:46:15 2011
@@ -227,6 +227,13 @@ public interface JavaMojoAnnotation
      */
     String REQUIRES_REPORTS = "requiresReports";
 
+    /**
+     * Indicates that this mojo is thread-safe and can be run in parallel
+     *
+     * <b>Note</b>: Should be defined in a Mojo Type.
+     */
+    String THREAD_SAFE = "threadSafe";
+
 
     // ----------------------------------------------------------------------
     // Descriptor for fields i.e. parameters
@@ -351,11 +358,4 @@ public interface JavaMojoAnnotation
      */
     String DEPRECATED = "deprecated";
 
-    /**
-     * Indicates that this mojo is thread-safe and can be run in parallel
-     *
-     * <b>Note</b>: Should be defined in a Mojo Type.
-     */
-    String THREAD_SAFE = "threadSafe";
-
 }