You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@calcite.apache.org by jh...@apache.org on 2015/03/23 18:26:22 UTC

[8/9] incubator-calcite git commit: [CALCITE-592] Upgrade to Guava 14.0.1

[CALCITE-592] Upgrade to Guava 14.0.1


Project: http://git-wip-us.apache.org/repos/asf/incubator-calcite/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-calcite/commit/0fe2637d
Tree: http://git-wip-us.apache.org/repos/asf/incubator-calcite/tree/0fe2637d
Diff: http://git-wip-us.apache.org/repos/asf/incubator-calcite/diff/0fe2637d

Branch: refs/heads/master
Commit: 0fe2637d66d3c263d507fc2ef98366238707dfea
Parents: 76a0665
Author: Julian Hyde <jh...@apache.org>
Authored: Mon Mar 23 02:18:37 2015 -0700
Committer: Julian Hyde <jh...@apache.org>
Committed: Mon Mar 23 02:18:37 2015 -0700

----------------------------------------------------------------------
 core/pom.xml | 4 ++++
 pom.xml      | 9 +++++++--
 2 files changed, 11 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-calcite/blob/0fe2637d/core/pom.xml
----------------------------------------------------------------------
diff --git a/core/pom.xml b/core/pom.xml
index 34059f7..5533984 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -60,6 +60,10 @@ limitations under the License.
       <artifactId>jackson-databind</artifactId>
     </dependency>
     <dependency>
+      <groupId>com.google.code.findbugs</groupId>
+      <artifactId>jsr305</artifactId>
+    </dependency>
+    <dependency>
       <groupId>junit</groupId>
       <artifactId>junit</artifactId>
       <scope>test</scope>

http://git-wip-us.apache.org/repos/asf/incubator-calcite/blob/0fe2637d/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 683f173..f870774 100644
--- a/pom.xml
+++ b/pom.xml
@@ -124,11 +124,16 @@ limitations under the License.
         <version>2.1.1</version>
       </dependency>
       <dependency>
+        <groupId>com.google.code.findbugs</groupId>
+        <artifactId>jsr305</artifactId>
+        <version>1.3.9</version>
+      </dependency>
+      <dependency>
         <groupId>com.google.guava</groupId>
         <artifactId>guava</artifactId>
-        <!-- We support versions as old as 11.0.2 (the version used by Hadoop)
+        <!-- We support versions as old as 14.0.1 (the version used by Hive)
              but prefer more recent versions. -->
-        <version>11.0.2</version>
+        <version>14.0.1</version>
       </dependency>
       <dependency>
         <groupId>junit</groupId>