From 28f55707bcdf1e848673d5c1f92674d23d95667d Mon Sep 17 00:00:00 2001 From: Herve Boutemy Date: Sun, 16 Oct 2011 19:46:15 +0000 Subject: [PATCH] ordered THREAD_SAFE constant git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1184910 13f79535-47bb-0310-9956-ffa450edef68 --- .../plugin/extractor/java/JavaMojoAnnotation.java | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) 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"; - }