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 791909c..eec77c2 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
@@ -22,15 +22,39 @@ package org.apache.maven.plugins.annotations;
import org.apache.maven.artifact.Artifact;
/**
+ * Dependencies resolution scopes available before
+ * mojo execution.
+ *
* @author Hervé Boutemy
* @since 3.0
*/
public enum DependencyScope
{
+ /**
+ * compile resolution scope
+ * = compile + system + provided dependencies
+ */
COMPILE( Artifact.SCOPE_COMPILE ),
+ /**
+ * compile+runtime resolution scope (Maven 3 only)
+ * = compile + system + provided + runtime dependencies
+ */
COMPILE_PLUS_RUNTIME( Artifact.SCOPE_COMPILE_PLUS_RUNTIME ),
+ /**
+ * runtime resolution scope
+ * = compile + runtime dependencies
+ */
RUNTIME( Artifact.SCOPE_RUNTIME ),
- SCOPE_RUNTIME_PLUS_SYSTEM( Artifact.SCOPE_RUNTIME_PLUS_SYSTEM ),
+ /**
+ * runtime+system resolution scope (Maven 3 only)
+ * = compile + system + runtime dependencies
+ */
+ RUNTIME_PLUS_SYSTEM( Artifact.SCOPE_RUNTIME_PLUS_SYSTEM ),
+ /**
+ * test resolution scope
+ * = compile + system + provided + runtime + test
+ * dependencies
+ */
TEST( Artifact.SCOPE_TEST );
private final String id;