From dea91901e7adfcb340c735081534bc4a4a9eefae Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Mon, 14 May 2012 19:57:32 +0000 Subject: [PATCH] add an other scope available in m3 git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1338373 13f79535-47bb-0310-9956-ffa450edef68 --- .../org/apache/maven/plugins/annotations/DependencyScope.java | 1 + 1 file changed, 1 insertion(+) diff --git a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java index b15f283..791909c 100644 --- a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java +++ b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/DependencyScope.java @@ -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;