phoenix-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix-core</artifactId> <version>5.2.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to You under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the 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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix</artifactId> <version>5.2.1</version> </parent> <artifactId>phoenix-core</artifactId> <name>Phoenix Core</name> <description>Phoenix Core, Unit and Integration tests</description> <properties> <top.dir>${project.basedir}/..</top.dir> </properties> <build> <plugins> <!-- Add the ant-generated sources to the source path --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <executions> <execution> <phase>prepare-package </phase> <goals> <goal>test-jar</goal> </goals> <configuration> <archive> <manifest> <mainClass>org.apache.phoenix.util.GeneratePerformanceData</mainClass> </manifest> </archive> </configuration> </execution> </executions> <configuration> <!-- 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> <exclude>**/*.jsp</exclude> <exclude>log4j.properties</exclude> </excludes> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <configuration> <ignoredUnusedDeclaredDependencies> <ignoredUnusedDeclaredDependency> org.apache.omid:omid-commit-table </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.omid:omid-transaction-client </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.hbase:hbase-testing-util </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.omid:omid-hbase-client </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.zookeeper:zookeeper-jute </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.phoenix:phoenix-hbase-compat-${hbase.compat.version} </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.logging.log4j:log4j-api </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.logging.log4j:log4j-core </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.logging.log4j:log4j-slf4j-impl </ignoredUnusedDeclaredDependency> <ignoredUnusedDeclaredDependency> org.apache.logging.log4j:log4j-1.2-api </ignoredUnusedDeclaredDependency> </ignoredUnusedDeclaredDependencies> <ignoredUsedUndeclaredDependencies> </ignoredUsedUndeclaredDependencies> </configuration> <executions> <execution> <!-- generates the file that will be used by the sandbox script in the dev env --> <id>create-phoenix-generated-classpath</id> <goals> <goal>build-classpath</goal> </goals> <configuration> <outputFile>${project.build.directory}/cached_classpath.txt</outputFile> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-failsafe-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.rat</groupId> <artifactId>apache-rat-plugin</artifactId> <configuration> <excludes> <exclude>src/main/java/org/apache/phoenix/coprocessor/generated/*.java</exclude> <exclude>src/main/resources/META-INF/services/java.sql.Driver</exclude> </excludes> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix-core-client</artifactId> </dependency> <dependency> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix-core-server</artifactId> </dependency> <!-- Hadoop dependencies --> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-auth</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-yarn-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-mapreduce-client-core</artifactId> <scope>test</scope> </dependency> <!-- HBase dependencies --> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-common</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-metrics-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-protocol</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-protocol-shaded</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-zookeeper</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-hadoop2-compat</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-mapreduce</artifactId> <scope>test</scope> </dependency> <!-- HBase Adjacent Dependencies --> <dependency> <groupId>org.apache.zookeeper</groupId> <artifactId>zookeeper-jute</artifactId> <scope>test</scope> </dependency> <!-- Omid dependencies --> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-hbase-coprocessor</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-commit-table</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-transaction-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-hbase-client</artifactId> <scope>test</scope> </dependency> <!-- HBase compat dependency --> <dependency> <groupId>org.apache.phoenix</groupId> <artifactId>phoenix-hbase-compat-${hbase.compat.version}</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.phoenix.thirdparty</groupId> <artifactId>phoenix-shaded-guava</artifactId> <scope>test</scope> </dependency> <!-- Hadoop test dependencies --> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-minikdc</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <type>test-jar</type> <classifier>tests</classifier> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-common</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> <!-- HBase test dependencies --> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-it</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-common</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-server</artifactId> <type>test-jar</type> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-testing-util</artifactId> <scope>test</scope> </dependency> <!-- Omid test dependencies --> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-tso-server</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.omid</groupId> <artifactId>omid-tso-server</artifactId> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-client</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.curator</groupId> <artifactId>curator-framework</artifactId> <scope>test</scope> </dependency> <!-- Other test dependencies --> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> </dependency> <dependency> <groupId>org.apache.phoenix.thirdparty</groupId> <artifactId>phoenix-shaded-commons-cli</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.github.stephenc.findbugs</groupId> <artifactId>findbugs-annotations</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.code.findbugs</groupId> <artifactId>jsr305</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.inject</groupId> <artifactId>guice</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.google.protobuf</groupId> <artifactId>protobuf-java</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.htrace</groupId> <artifactId>htrace-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm.icu</groupId> <artifactId>icu4j</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>joda-time</groupId> <artifactId>joda-time</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-csv</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-codec</groupId> <artifactId>commons-codec</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.hdrhistogram</groupId> <artifactId>HdrHistogram</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <scope>test</scope> </dependency> <!-- logging --> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-core</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-slf4j-impl</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-1.2-api</artifactId> <scope>test</scope> </dependency> <!-- logging end --> </dependencies> </project>