You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@shindig.apache.org by ie...@apache.org on 2008/08/27 22:32:17 UTC

svn commit: r689604 - in /incubator/shindig/trunk: java/social-api/pom.xml pom.xml

Author: ieb
Date: Wed Aug 27 13:32:16 2008
New Revision: 689604

URL: http://svn.apache.org/viewvc?rev=689604&view=rev
Log:
Added findbugs annotations to enable supression of spurious findbugs warnings.

Modified:
    incubator/shindig/trunk/java/social-api/pom.xml
    incubator/shindig/trunk/pom.xml

Modified: incubator/shindig/trunk/java/social-api/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/java/social-api/pom.xml?rev=689604&r1=689603&r2=689604&view=diff
==============================================================================
--- incubator/shindig/trunk/java/social-api/pom.xml (original)
+++ incubator/shindig/trunk/java/social-api/pom.xml Wed Aug 27 13:32:16 2008
@@ -118,5 +118,10 @@
         <groupId>org.apache.geronimo.specs</groupId>
         <artifactId>geronimo-stax-api_1.0_spec</artifactId>
     </dependency>
+    <dependency>
+        <groupId>findbugs</groupId>
+        <artifactId>annotations</artifactId>
+        <scope>compile</scope> 
+    </dependency>
   </dependencies>
 </project>

Modified: incubator/shindig/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/shindig/trunk/pom.xml?rev=689604&r1=689603&r2=689604&view=diff
==============================================================================
--- incubator/shindig/trunk/pom.xml (original)
+++ incubator/shindig/trunk/pom.xml Wed Aug 27 13:32:16 2008
@@ -991,6 +991,12 @@
         <artifactId>ehcache</artifactId>
         <version>1.4.1</version>
       </dependency>
+      <dependency>
+        <groupId>findbugs</groupId>
+        <artifactId>annotations</artifactId>
+        <version>1.0.0</version>
+        <scope>compile</scope>
+      </dependency>
     </dependencies>
   </dependencyManagement>
 </project>