You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@phoenix.apache.org by pb...@apache.org on 2018/02/11 20:27:20 UTC

[7/7] phoenix git commit: PHOENIX-4571 Adds dependency on servlet-api for PQS

PHOENIX-4571 Adds dependency on servlet-api for PQS


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

Branch: refs/heads/4.x-cdh5.11.2
Commit: 06ecae7a073560ea97e3f8818c29739c73166ad8
Parents: 04029fb
Author: Josh Elser <el...@apache.org>
Authored: Tue Jan 30 21:06:08 2018 +0000
Committer: Pedro Boado <pb...@apache.org>
Committed: Sun Feb 11 15:59:22 2018 +0000

----------------------------------------------------------------------
 phoenix-queryserver/pom.xml | 4 ++++
 pom.xml                     | 7 ++++++-
 2 files changed, 10 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/phoenix/blob/06ecae7a/phoenix-queryserver/pom.xml
----------------------------------------------------------------------
diff --git a/phoenix-queryserver/pom.xml b/phoenix-queryserver/pom.xml
index a0866a3..7180b18 100644
--- a/phoenix-queryserver/pom.xml
+++ b/phoenix-queryserver/pom.xml
@@ -147,6 +147,10 @@
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
     </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
     <!-- for tests -->
     <dependency>
       <groupId>org.mockito</groupId>

http://git-wip-us.apache.org/repos/asf/phoenix/blob/06ecae7a/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 513460e..574f8ba 100644
--- a/pom.xml
+++ b/pom.xml
@@ -149,7 +149,7 @@
     <scala.binary.version>2.10</scala.binary.version>
     <stream.version>2.9.5</stream.version>
     <i18n-util.version>1.0.1</i18n-util.version>
-
+    <servlet.api.version>3.1.0</servlet.api.version>
     <!-- Test Dependencies -->
     <mockito-all.version>1.8.5</mockito-all.version>
     <junit.version>4.12</junit.version>
@@ -979,6 +979,11 @@
         <artifactId>i18n-util</artifactId>
         <version>${i18n-util.version}</version>
       </dependency>
+      <dependency>
+        <groupId>javax.servlet</groupId>
+        <artifactId>javax.servlet-api</artifactId>
+        <version>${servlet.api.version}</version>
+      </dependency>
     </dependencies>
   </dependencyManagement>