2010-02-22 18:49:24 -05:00
<?xml version="1.0" encoding="UTF-8"?>
2010-02-24 15:17:17 -05:00
<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">
2010-02-22 18:49:24 -05:00
<modelVersion > 4.0.0</modelVersion>
2010-02-24 15:17:17 -05:00
2010-02-22 18:49:24 -05:00
<artifactId > hbase-core</artifactId>
<packaging > jar</packaging>
<name > HBase Core</name>
2010-02-24 15:17:17 -05:00
2010-02-22 18:49:24 -05:00
<parent >
<groupId > org.apache.hbase</groupId>
<artifactId > hbase</artifactId>
2010-02-24 15:17:17 -05:00
<version > 0.21.0-SNAPSHOT</version>
2010-02-22 18:49:24 -05:00
</parent>
<!-- TODO still need Repositories defined -->
<build >
<!-- TODO this may affect the contrib dependency resolution, commenting out for now
<finalName > hbase-${project.version}</finalName>
-->
<resources >
<resource >
<directory > src/main/resources</directory>
</resource>
<resource >
2010-02-24 15:17:17 -05:00
<directory > src/main/webapps</directory>
2010-02-22 18:49:24 -05:00
<includes >
2010-02-24 15:17:17 -05:00
<include > */.gif</include>
<include > */.css</include>
<include > */.html</include>
<include > */.xml</include>
2010-02-22 18:49:24 -05:00
</includes>
</resource>
</resources>
2010-02-24 15:17:17 -05:00
2010-02-22 18:49:24 -05:00
<plugins >
<!-- Run with - Dmaven.test.skip.exec=true to build - tests.jar without running tests (this is needed for upstream projects whose tests need this jar simply for compilation) -->
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-jar-plugin</artifactId>
<executions >
<execution >
<goals >
<goal > test-jar</goal>
</goals>
</execution>
</executions>
<configuration >
<archive >
<manifest >
<mainClass > org/apache/hadoop/hbase/mapreduce/Driver</mainClass>
</manifest>
</archive>
<!-- Exclude these 2 packages, because their dependency _binary_ files include the sources, and Maven 2.2 appears to add them to the sources to compile, weird -->
<excludes >
<exclude > org/apache/jute/**</exclude>
<exclude > org/apache/zookeeper/**</exclude>
</excludes>
</configuration>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-source-plugin</artifactId>
<executions >
<execution >
<id > attach-sources</id>
<phase > package</phase>
<goals >
<goal > jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.apache.maven.plugins</groupId>
<artifactId > maven-surefire-plugin</artifactId>
<configuration >
<forkMode > always</forkMode>
<argLine > -Xmx512m</argLine>
<redirectTestOutputToFile > true</redirectTestOutputToFile>
<excludes >
<exclude > **/SoftValueSortedMapTest.java</exclude>
<exclude > **/*$*</exclude>
</excludes>
</configuration>
</plugin>
<plugin >
<artifactId > maven-antrun-plugin</artifactId>
<executions >
<execution >
<id > JSPC</id>
<phase > generate-sources</phase>
2010-02-22 21:11:00 -05:00
<configuration >
2010-02-24 15:17:17 -05:00
<tasks >
<taskdef classname= "org.apache.jasper.JspC" name= "jspcompiler" classpathref= "maven.compile.classpath" />
<jspcompiler uriroot= "${basedir}/src/main/resources/webapps/master"
outputdir="${project.build.directory}/jspc"
package="org.apache.hadoop.hbase.generated.master"
webxml="${basedir}/src/main/resources/webapps/master/WEB-INF/web.xml"/>
<jspcompiler uriroot= "${basedir}/src/main/resources/webapps/regionserver"
outputdir="${project.build.directory}/jspc"
package="org.apache.hadoop.hbase.generated.regionserver"
webxml="${basedir}/src/main/resources/webapps/regionserver/WEB-INF/web.xml"/>
</tasks>
2010-02-22 18:49:24 -05:00
</configuration>
<goals >
<goal > run</goal>
</goals>
</execution>
<execution >
<id > package-info</id>
<phase > generate-sources</phase>
<configuration >
<tasks >
<exec executable= "sh" >
<arg line= "${basedir}/src/saveVersion.sh ${project.version} ${project.build.directory}/generated-sources" />
</exec>
</tasks>
</configuration>
<goals >
<goal > run</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin >
<groupId > org.codehaus.mojo</groupId>
<artifactId > build-helper-maven-plugin</artifactId>
<executions >
<execution >
<id > add-jspc-source</id>
<phase > generate-sources</phase>
<goals >
<goal > add-source</goal>
</goals>
<configuration >
<sources >
<source > ${basedir}/target/jspc</source>
</sources>
</configuration>
</execution>
<execution >
<id > add-package-info</id>
<phase > generate-sources</phase>
<goals >
<goal > add-source</goal>
</goals>
<configuration >
<sources >
<source > ${project.build.directory}/generated-sources</source>
</sources>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
2010-02-24 15:17:17 -05:00
2010-02-22 18:49:24 -05:00
<dependencies >
<dependency >
<groupId > log4j</groupId>
<artifactId > log4j</artifactId>
<version > ${log4j.version}</version>
<exclusions >
<exclusion >
<groupId > javax.jms</groupId>
<artifactId > jms</artifactId>
</exclusion>
<exclusion >
<groupId > com.sun.jmx</groupId>
<artifactId > jmxri</artifactId>
</exclusion>
<exclusion >
<groupId > com.sun.jdmk</groupId>
<artifactId > jmxtools</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-mapred</artifactId>
<version > ${hadoop-mapred.version}</version>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-mapred-test</artifactId>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-hdfs</artifactId>
<version > ${hadoop-hdfs.version}</version>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-hdfs-test</artifactId>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-core</artifactId>
<version > ${hadoop-core.version}</version>
</dependency>
<dependency >
<groupId > org.apache.hadoop</groupId>
<artifactId > hadoop-core-test</artifactId>
</dependency>
<dependency >
<groupId > org.apache.thrift</groupId>
<artifactId > thrift</artifactId>
<version > ${thrift.version}</version>
</dependency>
<dependency >
<groupId > org.apache.hadoop.zookeeper</groupId>
<artifactId > zookeeper</artifactId>
<version > ${zookeeper.version}</version>
</dependency>
<dependency >
<groupId > org.apache.commons</groupId>
<artifactId > commons-math</artifactId>
<version > ${commons-math.version}</version>
<scope > test</scope>
</dependency>
<dependency >
<groupId > commons-lang</groupId>
<artifactId > commons-lang</artifactId>
<version > ${commons-lang.version}</version>
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-api</artifactId>
2010-02-24 15:17:17 -05:00
<version > ${slf4j.version}</version>
2010-02-22 18:49:24 -05:00
</dependency>
<dependency >
<groupId > org.slf4j</groupId>
<artifactId > slf4j-log4j12</artifactId>
<version > ${slf4j.version}</version>
</dependency>
<dependency >
<groupId > org.jruby</groupId>
<artifactId > jruby-complete</artifactId>
<version > ${jruby.version}</version>
</dependency>
</dependencies>
</project>