From aa9ca62315b4c259fad00d0b305d26f05fbf9849 Mon Sep 17 00:00:00 2001 From: Olivier Lamy Date: Mon, 14 May 2012 08:08:49 +0000 Subject: [PATCH] better default value for @Component git-svn-id: https://svn.apache.org/repos/asf/maven/plugin-tools/trunk@1338048 13f79535-47bb-0310-9956-ffa450edef68 --- .../java/org/apache/maven/plugins/annotations/Component.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java index 66b835a..e6687b2 100644 --- a/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java +++ b/maven-plugin-annotations/src/main/java/org/apache/maven/plugins/annotations/Component.java @@ -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; }