242 lines
8.2 KiB
XML
242 lines
8.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>org.apache.hbase</groupId>
|
|
<artifactId>hbase</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.20.2-SNAPSHOT</version>
|
|
<name>HBase</name>
|
|
<description>HBase is the Hadoop database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardware.</description>
|
|
<url>http://hadoop.apache.org/hbase</url>
|
|
<licenses>
|
|
<license>
|
|
<name>Apache 2</name>
|
|
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
<distribution>repo</distribution>
|
|
<comments>A business-friendly OSS license</comments>
|
|
</license>
|
|
</licenses>
|
|
<scm>
|
|
<connection>scm:svn:http://svn.apache.org/repos/asf/hadoop/hbase/trunk</connection>
|
|
<developerConnection>scm:svn:https://svn.apache.org/repos/asf/hadoop/hbase/trunk</developerConnection>
|
|
<url>http://svn.apache.org/viewvc/hadoop/hbase/trunk</url>
|
|
</scm>
|
|
<developers>
|
|
<developer>
|
|
<id>stack</id>
|
|
<name>Michael Stack</name>
|
|
<email>stack@apache.org</email>
|
|
<timezone>-8</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>rawson</id>
|
|
<name>Ryan Rawson</name>
|
|
<email>rawson@apache.org</email>
|
|
<timezone>-8</timezone>
|
|
</developer>
|
|
</developers>
|
|
<issueManagement>
|
|
<system>JIRA</system>
|
|
<url>http://issues.apache.org/jira/</url>
|
|
</issueManagement>
|
|
<properties>
|
|
<compileSource>1.6</compileSource>
|
|
<log4j.version>1.2.15</log4j.version>
|
|
<commons-lang.version>2.4</commons-lang.version>
|
|
<commons-math.version>2.0</commons-math.version>
|
|
<hadoop-core.version>0.21.0-SNAPSHOT</hadoop-core.version>
|
|
<hadoop-hdfs.version>0.21.0-SNAPSHOT</hadoop-hdfs.version>
|
|
<hadoop-mapred.version>0.21.0-SNAPSHOT</hadoop-mapred.version>
|
|
<!-- TODO specify external repositories - Note the following 2 resources are not downloadable from a public repository, you'll need to place these manually by using 'mvn install:file' or use something like Nexus as a repository manager -->
|
|
<zookeeper.version>3.2.2</zookeeper.version>
|
|
<thrift.version>0.2.0</thrift.version>
|
|
<jruby.version>1.3.1</jruby.version>
|
|
<slf4j.version>1.5.8</slf4j.version>
|
|
</properties>
|
|
<modules>
|
|
<module>core</module>
|
|
<module>contrib</module>
|
|
</modules>
|
|
<repositories>
|
|
<repository>
|
|
<id>asf-snapshots</id>
|
|
<name>Apache Public Snapshots</name>
|
|
<url>https://repository.apache.org/content/repositories/snapshots/</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>java.net</id>
|
|
<name>Java.Net</name>
|
|
<url>http://download.java.net/maven/2/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>googlecode</id>
|
|
<name>Google Code</name>
|
|
<url>http://google-maven-repository.googlecode.com/svn/repository</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<repository>
|
|
<id>codehaus</id>
|
|
<name>Codehaus Public</name>
|
|
<url>http://repository.codehaus.org/</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
<!-- TODO replace this with a 'proper' repository, even if it's just @stacks version of this. -->
|
|
<repository>
|
|
<id>misc</id>
|
|
<name>Miscellaneous (Stuff for Zookeeper and Thrift)</name>
|
|
<url>http://people.apache.org/~psmith/hbase/repo</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>true</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
<build>
|
|
<directory>target</directory>
|
|
<outputDirectory>target/classes</outputDirectory>
|
|
<finalName>${artifactId}-${version}</finalName>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${compileSource}</source>
|
|
<target>${compileSource}</target>
|
|
<encoding>UTF-8</encoding>
|
|
<showWarnings>true</showWarnings>
|
|
<showDeprecations>true</showDeprecations>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
<!-- see http://jira.codehaus.org/browse/MASSEMBLY-109, beta-5 is out, but I'm having an error downloading that plugin, maybe Nexus related, not sure -->
|
|
<version>2.2-beta-4</version>
|
|
<!-- THIS might not be doable
|
|
<executions>
|
|
<execution>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>single</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
-->
|
|
<configuration>
|
|
<descriptors>
|
|
<descriptor>src/assembly/bin.xml</descriptor>
|
|
</descriptors>
|
|
<descriptorRefs>
|
|
<descriptorRef>src</descriptorRef>
|
|
<descriptorRef>project</descriptorRef>
|
|
</descriptorRefs>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>Apache Public Releases</id>
|
|
<url>scp://people.apache.org/home/psmith/public_html/hbase/repo/</url>
|
|
</repository>
|
|
<snapshotRepository>
|
|
<id>Apache Public Snapshots</id>
|
|
<name>Aconex Snapshots</name>
|
|
<url>scp://people.apache.org/home/psmith/public_html/hbase/repo-snapshots/</url>
|
|
</snapshotRepository>
|
|
<site>
|
|
<id>HBase Site</id>
|
|
<url>scp://people.apache.org/home/psmith/public_html/hbase/sandbox/hbase/</url>
|
|
</site>
|
|
</distributionManagement>
|
|
<reporting>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-pmd-plugin</artifactId>
|
|
<version>2.3</version>
|
|
<configuration>
|
|
<targetJdk>${compileSource}</targetJdk>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-checkstyle-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>findbugs-maven-plugin</artifactId>
|
|
<version>2.3</version>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<configuration>
|
|
<inputEncoding>UTF-8</inputEncoding>
|
|
<outputEncoding>UTF-8</outputEncoding>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<configuration>
|
|
<encoding>UTF-8</encoding>
|
|
<docencoding>UTF-8</docencoding>
|
|
<charset>UTF-8</charset>
|
|
<!--
|
|
This is probably not needed, given the smallness of the HBase source code, but left here in case
|
|
<minmemory>128m</minmemory>
|
|
<maxmemory>1024m</maxmemory>
|
|
-->
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jxr-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>jdepend-maven-plugin</artifactId>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-changes-plugin</artifactId>
|
|
<configuration>
|
|
<issueLinkTemplate>%URL%/browse/%ISSUE%</issueLinkTemplate>
|
|
</configuration>
|
|
<reportSets>
|
|
<reportSet>
|
|
<reports>
|
|
<report>changes-report</report>
|
|
</reports>
|
|
</reportSet>
|
|
</reportSets>
|
|
</plugin>
|
|
</plugins>
|
|
</reporting>
|
|
</project>
|