<!-- Generated by Makefile on Sun Dec 16 15:36:38 PST 2018 -->
<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/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>

  <groupId>net.opentsdb</groupId>
  <artifactId>opentsdb</artifactId>
  <version>2.3.2</version>
  <name>OpenTSDB</name>
  <organization>
    <name>The OpenTSDB Authors</name>
    <url>http://opentsdb.net</url>
  </organization>
  <description>
    OpenTSDB is a distributed, scalable Time Series Database (TSDB)
    written on top of HBase.  OpenTSDB was written to address a common need:
    store, index and serve metrics collected from computer systems (network
    gear, operating systems, applications) at a large scale, and make this
    data easily accessible and graphable.
  </description>
  <url>http://opentsdb.net</url>
  <licenses>
    <license>
      <name>LGPLv2.1+</name>
      <url>http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html</url>
      <distribution>repo</distribution>
    </license>
  </licenses>

  <scm>
    <connection>scm:git:git@github.com:OpenTSDB/opentsdb.git</connection>
    <url>https://github.com/OpenTSDB/opentsdb</url>
  </scm>
  <issueManagement>
    <system>GitHub</system>
    <url>https://github.com/OpenTSDB/opentsdb/issues</url>
  </issueManagement>
  <mailingLists>
    <mailingList>
      <name>User List</name>
      <post>opentsdb@googlegroups.com</post>
      <subscribe>opentsdb+subscribe@googlegroups.com</subscribe>
      <unsubscribe>opentsdb+unsubscribe@googlegroups.com</unsubscribe>
      <archive>https://groups.google.com/group/opentsdb</archive>
    </mailingList>
  </mailingLists>
  <developers>
    <developer>
      <id>tsuna</id>
      <name>Benoit "tsuna" Sigoure</name>
      <email>tsunanet@gmail.com</email>
      <roles>
        <role>developer</role>
      </roles>
      <timezone>-8</timezone>
    </developer>
  </developers>
  <inceptionYear>2010</inceptionYear>

  <packaging>jar</packaging>

  <build>
    <sourceDirectory>src-main</sourceDirectory>
    <testSourceDirectory>src-test</testSourceDirectory>

    <plugins>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-compiler-plugin</artifactId>
        <version>2.5.1</version>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <compilerArgument>-Xlint</compilerArgument>
          <excludes>
            <exclude>**/client/*.java</exclude>
          </excludes>
		  <testExcludes>
		    <exclude>**/TestGraphHandler.java</exclude>
		  </testExcludes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>exec-maven-plugin</artifactId>
        <version>1.2.1</version>
        <executions>
          <execution>
            <id>generate-build-data</id>
            <configuration>
              <executable>build-aux/gen_build_data.sh</executable>
              <!-- optional -->
              <arguments>
                <argument>target/generated-sources/net/opentsdb/tools/BuildData.java</argument>
                <argument>net.opentsdb.tools</argument>
                <argument>BuildData</argument>
              </arguments>
            </configuration>
            <phase>generate-sources</phase>
            <goals>
              <goal>exec</goal>
            </goals>
          </execution>
          <execution>
            <id>create-plugin-test-jar</id>
            <!-- TODO: Put the jar in the target dir and fix surefire conf. -->
            <configuration>
              <executable>jar</executable>
              <arguments>
                <argument>cvfm</argument>
                <argument>plugin_test.jar</argument>
                <argument>test/META-INF/MANIFEST.MF</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/plugin/DummyPluginA.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/plugin/DummyPluginB.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/search/DummySearchPlugin.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/tsd/DummyHttpSerializer.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/tsd/DummyHttpRpcPlugin.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/tsd/DummyRpcPlugin.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/tsd/DummyRTPublisher.class</argument>
                <argument>-C</argument>
                <argument>target/test-classes</argument>
                <argument>net/opentsdb/tsd/DummySEHPlugin.class</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.plugin.DummyPlugin</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.search.SearchPlugin</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.tsd.HttpSerializer</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.tsd.HttpRpcPlugin</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.tsd.RpcPlugin</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.tsd.RTPublisher</argument>
                <argument>-C</argument>
                <argument>test</argument>
                <argument>META-INF/services/net.opentsdb.tsd.StorageExceptionHandler</argument>
              </arguments>
            </configuration>
            <phase>test-compile</phase>
            <goals>
              <goal>exec</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>build-helper-maven-plugin</artifactId>
        <version>1.7</version>
        <executions>
          <execution>
            <id>add-source</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>add-source</goal>
            </goals>
            <configuration>
              <sources>
                <source>target/generated-sources</source>
              </sources>
            </configuration>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <artifactId>maven-antrun-plugin</artifactId>
        <version>1.7</version>
        <executions>
          <execution>
            <phase>process-resources</phase>
            <configuration>
              <target>
                <copy file="${basedir}/src/mygnuplot.sh" todir="${basedir}/target/classes"/>
                <chmod file="${basedir}/target/classes/mygnuplot.sh" perm="ugo+rx"/>
                <copy file="${basedir}/src/mygnuplot.bat" todir="${basedir}/target/classes"/>
                <chmod file="${basedir}/target/classes/mygnuplot.bat" perm="ugo+rx"/>
              </target>
            </configuration>
            <goals>
              <goal>run</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-surefire-plugin</artifactId>
        <version>2.16</version>
        <configuration>
          <argLine>-Xmx2048m -XX:MaxPermSize=256m</argLine>
          <redirectTestOutputToFile>true</redirectTestOutputToFile>
          <parallel>classes</parallel>
          <threadCount>2</threadCount>
          <reuseForks>false</reuseForks>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <version>2.4</version>
        <configuration>
          <excludes>
          <exclude>queryui/**</exclude>
          <exclude>WEB-INF/deploy/**</exclude>
          <exclude>mygnuplot.sh</exclude>
          </excludes>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.codehaus.mojo</groupId>
        <artifactId>gwt-maven-plugin</artifactId>
        <version>2.6.0</version>
        <executions>
          <execution>
            <configuration>
              <enableAssertions>true</enableAssertions>
              <module>tsd.QueryUi</module>
            </configuration>
            <phase>compile</phase>
            <goals>
              <goal>compile</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-source-plugin</artifactId>
        <version>2.1.2</version>
        <executions>
          <execution>
            <id>attach-sources</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-javadoc-plugin</artifactId>
        <version>2.8.1</version>
        <executions>
          <execution>
            <id>attach-javadocs</id>
            <goals>
              <goal>jar</goal>
            </goals>
          </execution>
        </executions>
        <configuration>
          <quiet>true</quiet>
          <validateLinks>true</validateLinks>
          <bottom>
            Copyright &#169; {inceptionYear}-{currentYear},
            ${project.organization.name}
          </bottom>
        </configuration>
      </plugin>

      <plugin>
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-gpg-plugin</artifactId>
        <version>1.5</version>
        <executions>
         <execution>
            <id>sign-artifacts</id>
            <phase>verify</phase>
            <goals>
              <goal>sign</goal>
            </goals>
          </execution>
        </executions>
      </plugin>
      
      <plugin>
        <groupId>org.sonatype.plugins</groupId>
        <artifactId>nexus-staging-maven-plugin</artifactId>
        <version>1.6.3</version>
        <extensions>true</extensions>
        <configuration>
           <serverId>ossrh</serverId>
           <nexusUrl>https://oss.sonatype.org/</nexusUrl>
           <autoReleaseAfterClose>false</autoReleaseAfterClose>
        </configuration>
      </plugin>
<plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-javadoc-plugin</artifactId>
    <version>2.10.2</version>
    <executions>
        <execution>
            <id>attach-javadocs</id>
            <goals>
                <goal>jar</goal>
            </goals>
            <configuration> <!-- add this to disable checking -->
                <additionalparam>-Xdoclint:none</additionalparam>
            </configuration>
        </execution>
    </executions>
</plugin>
      <plugin>
        <groupId>com.helger.maven</groupId>
        <artifactId>ph-javacc-maven-plugin</artifactId>
        <version>2.8.2</version>
        <executions>
          <execution>
            <id>jjc</id>
            <phase>generate-sources</phase>
            <goals>
              <goal>javacc</goal>
            </goals>
            <configuration>
              <jdkVersion>1.6</jdkVersion>
              <javadocFriendlyComments>true</javadocFriendlyComments>
              <packageName>net.opentsdb.query.expression.parser</packageName>
              <sourceDirectory>${basedir}/src/</sourceDirectory>
              <outputDirectory>${project.build.directory}/generated-sources/</outputDirectory>
            </configuration>
          </execution>
        </executions>
      </plugin>
      
    </plugins>
  </build>

  <dependencies>

    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <version>18.0</version>
    </dependency>
    
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-annotations</artifactId>
      <version>2.9.5</version>
    </dependency>
    
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-core</artifactId>
      <version>2.9.5</version>
    </dependency>
    
    <dependency>
      <groupId>com.fasterxml.jackson.core</groupId>
      <artifactId>jackson-databind</artifactId>
      <version>2.9.5</version>
    </dependency>

    <dependency>
      <groupId>io.netty</groupId>
      <artifactId>netty</artifactId>
      <version>3.10.6.Final</version>
    </dependency>

    <dependency>
      <groupId>com.stumbleupon</groupId>
      <artifactId>async</artifactId>
      <version>1.4.0</version>
    </dependency>

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <version>1.7.7</version>
    </dependency>

    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-math3</artifactId>
      <version>3.4.1</version>
    </dependency>
    
    <dependency>
      <groupId>org.apache.commons</groupId>
      <artifactId>commons-jexl</artifactId>
      <version>2.1.1</version>
    </dependency>
    
    <dependency>
      <groupId>org.jgrapht</groupId>
      <artifactId>jgrapht-core</artifactId>
      <version>0.9.1</version>
    </dependency>

    <!-- runtime dependencies -->

    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>log4j-over-slf4j</artifactId>
      <version>1.7.7</version>
    </dependency>

    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-core</artifactId>
      <version>1.0.13</version>
    </dependency>

    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <version>1.0.13</version>
    </dependency>

    <!-- test dependencies -->

    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.javassist</groupId>
      <artifactId>javassist</artifactId>
      <version>3.21.0-GA</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.11</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>1.9.5</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.objenesis</groupId>
      <artifactId>objenesis</artifactId>
      <version>1.3</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-api-mockito</artifactId>
      <version>1.5.4</version>
      <scope>test</scope>
    </dependency>

    <dependency>
      <groupId>org.powermock</groupId>
      <artifactId>powermock-module-junit4</artifactId>
      <version>1.5.4</version>
      <scope>test</scope>
    </dependency>

    <!-- misc. build-time dependencies -->

    <dependency>
      <groupId>com.google.gwt</groupId>
      <artifactId>gwt-user</artifactId>
      <version>2.6.0</version>
    </dependency>
    
    <dependency>
      <groupId>net.opentsdb</groupId>
      <artifactId>opentsdb_gwt_theme</artifactId>
      <version>1.0.0</version>
    </dependency>

  </dependencies>

  <properties>
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  </properties>
  
  <profiles>
    <profile>
      <!-- Build for Apache HBase backend -->
      <id>hbase</id>
      <activation>
        <activeByDefault>true</activeByDefault>
      </activation>

      <dependencies>
        <dependency>
          <groupId>org.hbase</groupId>
          <artifactId>asynchbase</artifactId>
          <version>1.8.2</version>
        </dependency>

        <dependency>
          <groupId>org.apache.zookeeper</groupId>
          <artifactId>zookeeper</artifactId>
          <version>3.4.6</version>
          <exclusions>
            <exclusion>
              <groupId>log4j</groupId>
              <artifactId>log4j</artifactId>
            </exclusion>
            <exclusion>
              <groupId>org.slf4j</groupId>
              <artifactId>slf4j-log4j12</artifactId>
            </exclusion>
            <exclusion>
              <groupId>jline</groupId>
              <artifactId>jline</artifactId>
            </exclusion>
            <exclusion>
              <groupId>junit</groupId>
              <artifactId>junit</artifactId>
            </exclusion>
          </exclusions>
        </dependency>
      </dependencies>
    </profile>

    <profile>
      <!-- Build for Google Bigtable backend -->
      <id>bigtable</id>
      <activation>
        <activeByDefault>false</activeByDefault>
      </activation>

      <dependencies>
        <dependency>
          <groupId>com.pythian.opentsdb</groupId>
          <artifactId>asyncbigtable</artifactId>
          <version>0.0</version>
          <classifier>jar-with-dependencies</classifier>
        </dependency>
      </dependencies>

    </profile>
    
    <profile>
      <!-- Build for Apache Cassandra backend -->
      <id>cassandra</id>
      <activation>
        <activeByDefault>@maven_profile_cassandra@</activeByDefault>
      </activation>

      <dependencies>
        <dependency>
          <groupId>net.opentsdb</groupId>
          <artifactId>asynccassandra</artifactId>
          <version>0.0</version>
          <classifier>jar-with-dependencies</classifier>
        </dependency>
      </dependencies>

    </profile>
  </profiles>
  
  <parent>
    <groupId>org.sonatype.oss</groupId>
    <artifactId>oss-parent</artifactId>
    <version>7</version>
  </parent>

</project>
