removed redundant static modifier
git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1343106 13f79535-47bb-0310-9956-ffa450edef68master
parent
328f9208db
commit
2ebeedd214
|
|
@ -37,11 +37,9 @@ public interface MojoAnnotationsScanner
|
||||||
{
|
{
|
||||||
String ROLE = MojoAnnotationsScanner.class.getName();
|
String ROLE = MojoAnnotationsScanner.class.getName();
|
||||||
|
|
||||||
static final List<String> CLASS_LEVEL_ANNOTATIONS =
|
final List<String> CLASS_LEVEL_ANNOTATIONS = Arrays.asList( Mojo.class.getName(), Execute.class.getName() );
|
||||||
Arrays.asList( Mojo.class.getName(), Execute.class.getName() );
|
|
||||||
|
|
||||||
static final List<String> FIELD_LEVEL_ANNOTATIONS =
|
final List<String> FIELD_LEVEL_ANNOTATIONS = Arrays.asList( Parameter.class.getName(), Component.class.getName() );
|
||||||
Arrays.asList( Parameter.class.getName(), Component.class.getName() );
|
|
||||||
|
|
||||||
Map<String, MojoAnnotatedClass> scan( MojoAnnotationsScannerRequest request )
|
Map<String, MojoAnnotatedClass> scan( MojoAnnotationsScannerRequest request )
|
||||||
throws ExtractionException;
|
throws ExtractionException;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue