You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/05/14 10:08:50 UTC

svn commit: r1338048 - /maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java

Author: olamy
Date: Mon May 14 08:08:49 2012
New Revision: 1338048

URL: http://svn.apache.org/viewvc?rev=1338048&view=rev
Log:
better default value for @Component

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

Modified: maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java?rev=1338048&r1=1338047&r2=1338048&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java (original)
+++ maven/plugin-tools/trunk/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java Mon May 14 08:08:49 2012
@@ -40,7 +40,7 @@ public @interface Component
 
     String roleHint() default "";
 
-    boolean required() default false;
+    boolean required() default true;
 
-    boolean readonly() default false;
+    boolean readonly() default true;
 }