METAMODEL-148: Updated HBase version and added dependency exclusions

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

Branch: refs/heads/master
Commit: e8f0624644713d43fb35a45cb9301177d8c0e4c8
Parents: 46fdb8f
Author: Kasper Sørensen <[email protected]>
Authored: Fri Jun 5 12:21:29 2015 +0200
Committer: Kasper Sørensen <[email protected]>
Committed: Fri Jun 5 12:21:29 2015 +0200

----------------------------------------------------------------------
 hadoop/pom.xml | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++++-
 hbase/pom.xml  |  9 ++++--
 2 files changed, 99 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/metamodel/blob/e8f06246/hadoop/pom.xml
----------------------------------------------------------------------
diff --git a/hadoop/pom.xml b/hadoop/pom.xml
index 77d97d4..03b6d8d 100644
--- a/hadoop/pom.xml
+++ b/hadoop/pom.xml
@@ -9,7 +9,8 @@
        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
CONDITIONS 
        OF ANY KIND, either express or implied. See the License for the 
specific 
        language governing permissions and limitations under the License. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
        <parent>
                <artifactId>MetaModel</artifactId>
                <groupId>org.apache.metamodel</groupId>
@@ -33,6 +34,96 @@
                        <groupId>org.apache.hadoop</groupId>
                        <artifactId>hadoop-client</artifactId>
                        <version>${hadoop.version}</version>
+                       <exclusions>
+                               <exclusion>
+                                       <groupId>jdk.tools</groupId>
+                                       <artifactId>jdk.tools</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.slf4j</groupId>
+                                       <artifactId>slf4j-log4j12</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <artifactId>log4j</artifactId>
+                                       <groupId>log4j</groupId>
+                               </exclusion>
+                               <exclusion>
+                                       <artifactId>commons-logging</artifactId>
+                                       <groupId>commons-logging</groupId>
+                               </exclusion>
+                               <exclusion>
+                                       <artifactId>jetty</artifactId>
+                                       <groupId>org.mortbay.jetty</groupId>
+                               </exclusion>
+                               <exclusion>
+                                       <artifactId>jetty-util</artifactId>
+                                       <groupId>org.mortbay.jetty</groupId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>tomcat</groupId>
+                                       <artifactId>jasper-runtime</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>tomcat</groupId>
+                                       <artifactId>jasper-compiler</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>javax.servlet</groupId>
+                                       <artifactId>servlet-api</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>google-collections</groupId>
+                                       
<artifactId>google-collections</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       
<groupId>net.sourceforge.collections</groupId>
+                                       
<artifactId>collections-generic</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>com.sun.jersey</groupId>
+                                       <artifactId>jersey-core</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>com.sun.jersey</groupId>
+                                       <artifactId>jersey-server</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.mortbay.jetty</groupId>
+                                       <artifactId>jsp-2.1</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>com.sun.jersey</groupId>
+                                       <artifactId>jersey-json</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.mortbay.jetty</groupId>
+                                       <artifactId>jsp-api-2.1</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>commons-cli</groupId>
+                                       <artifactId>commons-cli</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>io.netty</groupId>
+                                       <artifactId>netty</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>commons-httpclient</groupId>
+                                       
<artifactId>commons-httpclient</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.codehaus.jackson</groupId>
+                                       
<artifactId>jackson-mapper-asl</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.codehaus.jackson</groupId>
+                                       <artifactId>jackson-core</artifactId>
+                               </exclusion>
+                               <exclusion>
+                                       <groupId>org.codehaus.jackson</groupId>
+                                       
<artifactId>jackson-core-asl</artifactId>
+                               </exclusion>
+                       </exclusions>
                </dependency>
                <dependency>
                        <groupId>org.slf4j</groupId>

http://git-wip-us.apache.org/repos/asf/metamodel/blob/e8f06246/hbase/pom.xml
----------------------------------------------------------------------
diff --git a/hbase/pom.xml b/hbase/pom.xml
index b363942..fc8b4b9 100644
--- a/hbase/pom.xml
+++ b/hbase/pom.xml
@@ -9,7 +9,8 @@
        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
CONDITIONS 
        OF ANY KIND, either express or implied. See the License for the 
specific 
        language governing permissions and limitations under the License. -->
-<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"; 
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+       xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
        <parent>
                <artifactId>MetaModel</artifactId>
                <groupId>org.apache.metamodel</groupId>
@@ -20,7 +21,7 @@
        <name>MetaModel module for Apache HBase</name>
 
        <properties>
-               <hbase.version>1.0.0</hbase.version>
+               <hbase.version>1.1.0.1</hbase.version>
        </properties>
 
        <dependencies>
@@ -35,6 +36,10 @@
                        <version>${hbase.version}</version>
                        <exclusions>
                                <exclusion>
+                                       <groupId>jdk.tools</groupId>
+                                       <artifactId>jdk.tools</artifactId>
+                               </exclusion>
+                               <exclusion>
                                        <groupId>org.slf4j</groupId>
                                        <artifactId>slf4j-log4j12</artifactId>
                                </exclusion>

Reply via email to