diff --git a/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java b/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java index 6e667cf..a084150 100644 --- a/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java +++ b/maven-plugin-tools-java/src/main/java/org/apache/maven/tools/plugin/extractor/java/JavaMojoAnnotation.java @@ -227,6 +227,13 @@ public interface JavaMojoAnnotation */ String REQUIRES_REPORTS = "requiresReports"; + /** + * Indicates that this mojo is thread-safe and can be run in parallel + * + * Note: 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 - * - * Note: Should be defined in a Mojo Type. - */ - String THREAD_SAFE = "threadSafe"; - }