]> source.dussan.org Git - archiva.git/commitdiff
use non SNAPSHOT version of compiler plugin
authorOlivier Lamy <olamy@apache.org>
Thu, 12 Apr 2012 22:04:41 +0000 (22:04 +0000)
committerOlivier Lamy <olamy@apache.org>
Thu, 12 Apr 2012 22:04:41 +0000 (22:04 +0000)
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1325545 13f79535-47bb-0310-9956-ffa450edef68

archiva-modules/archiva-base/archiva-consumers/archiva-consumer-api/src/main/java/org/apache/archiva/consumers/Consumer.java
pom.xml

index d50fe97ebed779d4104a7a1216c8e8fcaa0b9dfa..747ee157d943a1603f07981cee6a1877d6aa9b01 100644 (file)
@@ -31,33 +31,33 @@ public abstract interface Consumer
      * 
      * @return the consumer id.
      */
-    public String getId();
+    String getId();
     
     /**
      * The human readable description for this consumer.
      * 
      * @return the human readable description for this consumer.
      */
-    public String getDescription();
+    String getDescription();
     
     /**
      * Flag indicating permanance of consumer. (if it can be disabled or not)
      * 
      * @return true indicating that consumer is permanent and cannot be disabled. 
      */
-    public boolean isPermanent();
+    boolean isPermanent();
 
     /**
      * Add a consumer monitor to the consumer.
      * 
      * @param monitor the monitor to add.
      */
-    public void addConsumerMonitor( ConsumerMonitor monitor );
+    void addConsumerMonitor( ConsumerMonitor monitor );
     
     /**
      * Remove a consumer monitor.
      * 
      * @param monitor the monitor to remove.
      */
-    public void removeConsumerMonitor( ConsumerMonitor monitor );
+    void removeConsumerMonitor( ConsumerMonitor monitor );
 }
diff --git a/pom.xml b/pom.xml
index 91823662d4506134417239ed843be17451b9e89f..e031565f36ece2423f7bbb7f5980955e9ffd660a 100644 (file)
--- a/pom.xml
+++ b/pom.xml
         <plugin>
           <groupId>org.apache.maven.plugins</groupId>
           <artifactId>maven-compiler-plugin</artifactId>
-          <version>2.4-SNAPSHOT</version>
+          <version>2.3.2</version>
           <configuration>
             <source>1.5</source>
             <target>1.5</target>