hbase-rest
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>hbase-rest</artifactId> <version>1.23.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright 2016-2020 Crown Copyright ~ ~ Licensed 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>uk.gov.gchq.gaffer</groupId> <artifactId>rest-api</artifactId> <version>1.23.0</version> </parent> <artifactId>hbase-rest</artifactId> <packaging>war</packaging> <dependencies> <dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>hbase-store</artifactId> <version>${project.parent.version}</version> </dependency> <dependency> <groupId>org.apache.hbase</groupId> <artifactId>hbase-testing-util</artifactId> <version>${hbase.version}</version> <scope>test</scope> <exclusions> <!-- Conflicts with Reload4j --> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.hadoop</groupId> <artifactId>hadoop-hdfs</artifactId> <version>${hadoop.version}</version> <scope>test</scope> <exclusions> <!-- Conflicts with Reload4j --> <exclusion> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> </exclusion> <exclusion> <groupId>log4j</groupId> <artifactId>log4j</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>hbase-store</artifactId> <version>${project.parent.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>core-rest</artifactId> <version>${project.parent.version}</version> <classifier>classes</classifier> </dependency> <dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>core-rest</artifactId> <version>${project.parent.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> <dependency> <groupId>uk.gov.gchq.gaffer</groupId> <artifactId>common-util</artifactId> <version>${project.parent.version}</version> <scope>test</scope> <type>test-jar</type> </dependency> </dependencies> <build> <finalName>${project.artifactId}-${project.version}</finalName> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> <version>${dependency.plugin.version}</version> <executions> <execution> <id>unpack</id> <phase>compile</phase> <goals> <goal>unpack</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>${project.parent.groupId}</groupId> <artifactId>core-rest</artifactId> <version>${project.parent.version}</version> <type>war</type> <overWrite>false</overWrite> <outputDirectory> ${project.build.directory}/${project.artifactId}-${project.version} </outputDirectory> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>