dsh-bio-compress-hdfs
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-compress-hdfs</artifactId>
<version>2.2</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!--
dsh-bio-compress-hdfs HDFS support for dsh-compress.
Copyright (c) 2013-2023 held jointly by the individual authors.
This library is free software; you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation; either version 3 of the License, or (at
your option) any later version.
This library is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; with out even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this library; if not, write to the Free Software Foundation,
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
> http://www.fsf.org/licensing/licenses/lgpl.html
> http://www.opensource.org/licenses/lgpl-license.php
-->
<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>
<packaging>jar</packaging>
<parent>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio</artifactId>
<version>2.2</version>
</parent>
<artifactId>dsh-bio-compress-hdfs</artifactId>
<name>dsh-bio-compress-hdfs</name>
<description>HDFS support for dsh-compress.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<configuration>
<createDependencyReducedPom>false</createDependencyReducedPom>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
</excludes>
</filter>
</filters>
<relocations>
<relocation>
<pattern>com.google.common</pattern>
<shadedPattern>org.dishevelled.bio.compress.hdfs.shaded.com.google.common</shadedPattern>
</relocation>
</relocations>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
</transformers>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-alignment</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-assembly</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-feature</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-variant</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-client</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.biojava</groupId>
<artifactId>sequencing</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-alignment</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-assembly</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-feature</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-bio-variant</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.dishevelled</groupId>
<artifactId>dsh-compress</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
</project>