You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by el...@apache.org on 2018/03/29 17:00:07 UTC

[5/5] phoenix git commit: PHOENIX-4677 Add explicit commons-cli dependency

PHOENIX-4677 Add explicit commons-cli dependency


Project: http://git-wip-us.apache.org/repos/asf/phoenix/repo
Commit: http://git-wip-us.apache.org/repos/asf/phoenix/commit/f2f81af5
Tree: http://git-wip-us.apache.org/repos/asf/phoenix/tree/f2f81af5
Diff: http://git-wip-us.apache.org/repos/asf/phoenix/diff/f2f81af5

Branch: refs/heads/4.x-HBase-0.98
Commit: f2f81af59ff04d9f2fc1ed441c1f7aa352b91243
Parents: 5f805e6
Author: Josh Elser <el...@apache.org>
Authored: Wed Mar 28 15:21:07 2018 -0400
Committer: Josh Elser <el...@apache.org>
Committed: Thu Mar 29 12:49:36 2018 -0400

----------------------------------------------------------------------
 phoenix-core/pom.xml  | 4 ++++
 phoenix-kafka/pom.xml | 4 ++++
 phoenix-pherf/pom.xml | 4 ++++
 phoenix-pig/pom.xml   | 4 ++++
 pom.xml               | 6 +++++-
 5 files changed, 21 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2f81af5/phoenix-core/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-core/pom.xml b/phoenix-core/pom.xml
index 86fcda3..a537c96 100644
--- a/phoenix-core/pom.xml
+++ b/phoenix-core/pom.xml
@@ -359,6 +359,10 @@
       <artifactId>netty</artifactId>
     </dependency>
     <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
       <groupId>commons-codec</groupId>
       <artifactId>commons-codec</artifactId>
     </dependency>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2f81af5/phoenix-kafka/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-kafka/pom.xml b/phoenix-kafka/pom.xml
index c823f65..7ca59e5 100644
--- a/phoenix-kafka/pom.xml
+++ b/phoenix-kafka/pom.xml
@@ -157,6 +157,10 @@
 			<artifactId>netty</artifactId>
 		</dependency>
 		<dependency>
+			<groupId>commons-cli</groupId>
+			<artifactId>commons-cli</artifactId>
+		</dependency>
+		<dependency>
 			<groupId>commons-codec</groupId>
 			<artifactId>commons-codec</artifactId>
 		</dependency>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2f81af5/phoenix-pherf/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-pherf/pom.xml b/phoenix-pherf/pom.xml
index ed7dca9..119e0e3 100644
--- a/phoenix-pherf/pom.xml
+++ b/phoenix-pherf/pom.xml
@@ -60,6 +60,10 @@
 			<artifactId>commons-math3</artifactId>
 			<version>3.3</version>
 		</dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
 
 		<!-- Test Dependencies -->
 		<dependency>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2f81af5/phoenix-pig/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-pig/pom.xml b/phoenix-pig/pom.xml
index 211f6c2..91c31b3 100644
--- a/phoenix-pig/pom.xml
+++ b/phoenix-pig/pom.xml
@@ -153,6 +153,10 @@
       <type>test-jar</type>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
   </dependencies>
 
   <build>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/f2f81af5/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 035006e..21691ab 100644
--- a/pom.xml
+++ b/pom.xml
@@ -79,7 +79,6 @@
     <log4j.version>1.2.17</log4j.version>
     <slf4j.version>1.6.4</slf4j.version>
     <protobuf-java.version>2.5.0</protobuf-java.version>
-    <commons-configuration.version>1.6</commons-configuration.version>
     <commons-io.version>2.1</commons-io.version>
     <commons-lang.version>2.5</commons-lang.version>
     <commons-logging.version>1.2</commons-logging.version>
@@ -874,6 +873,11 @@
         <version>${htrace.version}</version>
       </dependency>
       <dependency>
+        <groupId>commons-cli</groupId>
+        <artifactId>commons-cli</artifactId>
+        <version>${commons-cli.version}</version>
+      </dependency>
+      <dependency>
         <groupId>commons-logging</groupId>
         <artifactId>commons-logging</artifactId>
         <version>${commons-logging.version}</version>