slachiewicz / caliper

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

Make the maven build work #166

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.checkout the source code from subversion,with rev 354.
2.build it with ant or maven

What is the expected output? What do you see instead?
build it with ant will be successful,but the jar doesn't have 
build it with maven will fail, because
1. missing jsr305 in "<dependencies>"
2. guava r08 doesn't have "com.google.common.base.Ticker"

What version of the product are you using? On what operating system?
java version "1.7.0_04"
Java(TM) SE Runtime Environment (build 1.7.0_04-b20)
Java HotSpot(TM) Client VM (build 23.0-b21, mixed mode, sharing)

Please provide any additional information below.
Here is the patch:
Index: pom.xml
===================================================================
--- pom.xml (revision 356)
+++ pom.xml (working copy)
@@ -46,7 +46,7 @@
     <dependency>
       <groupId>com.google.guava</groupId>
       <artifactId>guava</artifactId>
-      <version>r08</version>
+      <version>12.0</version>
       <scope>compile</scope>
     </dependency>
     <dependency>
@@ -60,21 +60,18 @@
       <version>3.8.2</version>
       <scope>test</scope>
     </dependency>
+    <dependency>
+       <groupId>com.google.code.findbugs</groupId>
+       <artifactId>jsr305</artifactId>
+       <version>2.0.0</version>
+    </dependency>
   </dependencies>

Original issue reported on code.google.com by me@cpp.io on 6 Jul 2012 at 3:01

GoogleCodeExporter commented 9 years ago
build it with ant will be successful,but the jar doesn't have "global.caliperrc"

Original comment by me@cpp.io on 6 Jul 2012 at 3:17

GoogleCodeExporter commented 9 years ago
Thanks for our report.  The build infrastructure is in need of some spring 
cleaning and should happen within the next week or two.

Original comment by gak@google.com on 29 Oct 2012 at 5:52

GoogleCodeExporter commented 9 years ago

Original comment by kevinb@google.com on 1 Nov 2012 at 8:32

GoogleCodeExporter commented 9 years ago
Issue 131 has been merged into this issue.

Original comment by kevinb@google.com on 1 Nov 2012 at 8:45

GoogleCodeExporter commented 9 years ago

Original comment by gak@google.com on 1 Nov 2012 at 8:46

GoogleCodeExporter commented 9 years ago

Original comment by gak@google.com on 11 Apr 2013 at 7:09