slachiewicz / caliper

Automatically exported from code.google.com/p/caliper
Apache License 2.0
0 stars 0 forks source link

update maven pom #133

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
Currently it's not possible to compile caliper using provided pom.
The following patch did the job for me:

Index: pom.xml
===================================================================
--- pom.xml (revision 354)
+++ pom.xml (working copy)
@@ -46,7 +46,7 @@
     <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
-      <version>r08</version>
+      <version>10.0.1</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
@@ -55,6 +55,11 @@
       <version>2.0</version>
     </dependency>
     <dependency>
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+      <version>1.3.9</version>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <version>3.8.2</version>

Original issue reported on code.google.com by meph...@gmail.com on 17 Oct 2011 at 8:26

GoogleCodeExporter commented 9 years ago
This patch allowed me to compile from head on 1/11/2012

Original comment by zachary....@gmail.com on 11 Jan 2012 at 7:57

GoogleCodeExporter commented 9 years ago
Thanks!  Charles ended up fixing up our maven stuff a lot and you should be 
quite good for now -- let us know if not.

Original comment by kevinb@google.com on 8 Feb 2012 at 9:41