You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hbase.apache.org by te...@apache.org on 2014/04/22 21:45:51 UTC

svn commit: r1589271 - in /hbase/branches/0.98: hbase-server/pom.xml hbase-thrift/pom.xml

Author: tedyu
Date: Tue Apr 22 19:45:51 2014
New Revision: 1589271

URL: http://svn.apache.org/r1589271
Log:
HBASE-11023 Port HBASE-10488 "'mvn site' is broken due to org.apache.jasper.JspC not found" to 0.98


Modified:
    hbase/branches/0.98/hbase-server/pom.xml
    hbase/branches/0.98/hbase-thrift/pom.xml

Modified: hbase/branches/0.98/hbase-server/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.98/hbase-server/pom.xml?rev=1589271&r1=1589270&r2=1589271&view=diff
==============================================================================
--- hbase/branches/0.98/hbase-server/pom.xml (original)
+++ hbase/branches/0.98/hbase-server/pom.xml Tue Apr 22 19:45:51 2014
@@ -408,6 +408,7 @@
     <dependency>
       <groupId>tomcat</groupId>
       <artifactId>jasper-compiler</artifactId>
+      <scope>compile</scope>
     </dependency>
     <dependency>
       <groupId>tomcat</groupId>

Modified: hbase/branches/0.98/hbase-thrift/pom.xml
URL: http://svn.apache.org/viewvc/hbase/branches/0.98/hbase-thrift/pom.xml?rev=1589271&r1=1589270&r2=1589271&view=diff
==============================================================================
--- hbase/branches/0.98/hbase-thrift/pom.xml (original)
+++ hbase/branches/0.98/hbase-thrift/pom.xml Tue Apr 22 19:45:51 2014
@@ -200,6 +200,20 @@
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
     </dependency>
+    <dependency>
+      <groupId>org.mortbay.jetty</groupId>
+      <artifactId>jsp-2.1</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>tomcat</groupId>
+      <artifactId>jasper-compiler</artifactId>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>tomcat</groupId>
+      <artifactId>jasper-runtime</artifactId>
+    </dependency>
   </dependencies>
   <profiles>
     <!-- Skip the tests in this module -->