Author: olamy
Date: Mon May 14 19:57:32 2012
New Revision: 1338373

URL: http://svn.apache.org/viewvc?rev=1338373&view=rev
Log:
add an other scope available in m3

Modified:
    
maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java

Modified: 
maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java
URL: 
http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java?rev=1338373&r1=1338372&r2=1338373&view=diff
==============================================================================
--- 
maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java
 (original)
+++ 
maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java
 Mon May 14 19:57:32 2012
@@ -30,6 +30,7 @@ public enum DependencyScope
     COMPILE( Artifact.SCOPE_COMPILE ),
     COMPILE_PLUS_RUNTIME( Artifact.SCOPE_COMPILE_PLUS_RUNTIME ),
     RUNTIME( Artifact.SCOPE_RUNTIME ),
+    SCOPE_RUNTIME_PLUS_SYSTEM( Artifact.SCOPE_RUNTIME_PLUS_SYSTEM ),
     TEST( Artifact.SCOPE_TEST );
 
     private final String id;


Reply via email to