ordered THREAD_SAFE constant

git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1184910 13f79535-47bb-0310-9956-ffa450edef68
master
Herve Boutemy 2011-10-16 19:46:15 +00:00
parent 0c9db91e7f
commit 28f55707bc
1 changed files with 7 additions and 7 deletions

View File

@ -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";
}