<?xml version="1.0" encoding="UTF-8"?>
<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>cn.sliew</groupId>
        <artifactId>carp-plugin-storage-providers</artifactId>
        <version>0.0.34</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <artifactId>carp-plugin-storage-provider-s3</artifactId>
    <name>carp storage-provider-s3 plugin</name>

    <properties>
        <plugin.id>${project.groupId}.${project.artifactId}</plugin.id>
        <plugin.class>cn.sliew.carp.plugin.storage.provider.s3.S3FileStoragePlugin</plugin.class>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-hdfs-client</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-aws</artifactId>
        </dependency>
    </dependencies>

</project>