https://github.com/XiaoMi/themis
Raw File
Tip revision: 1b55d5903b211f601e18abf5c409276637c4a821 authored by cuijianwei on 28 August 2015, 03:21:49 UTC
won't expired when commit secondary
Tip revision: 1b55d59
pom.xml
<?xml version="1.0" encoding="UTF-8"?>
<project>
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.xiaomi.infra</groupId>
  <artifactId>themis</artifactId>
  <version>1.0-SNAPSHOT</version>
  <description>themis</description>
  <name>Themis Implementationn for HBase</name>
  <packaging>pom</packaging>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    <hadoop.version>2.0.0-alpha</hadoop.version>
    <hbase.version>0.94.21</hbase.version>
    <themis.version>1.0-SNAPSHOT</themis.version>
  </properties>

  <licenses>
    <license>
      <name>The Apache Software License, Version 2.0</name>
      <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
    </license>
  </licenses>

  <organization>
    <name>Xiaomi Inc</name>
    <url>http://www.mi.com</url>
  </organization>

  <dependencies>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.9</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-all</artifactId>
      <version>1.8.5</version>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <modules>
    <module>themis-coprocessor</module>
    <module>themis-client</module>
    <module>themis-index</module>
  </modules>

  <distributionManagement>
    <repository>
      <id>archiva.internal</id>
      <name>Internal Release Repository</name>
      <url>https://nexus.d.xiaomi.net/nexus/content/repositories/releases/</url>
    </repository>
    <snapshotRepository>
      <id>archiva.snapshots</id>
      <name>Internal Snapshot Repository</name>
      <url>https://nexus.d.xiaomi.net/nexus/content/repositories/snapshots/</url>
    </snapshotRepository>
  </distributionManagement>
</project>
back to top