<?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">
    <parent>
        <artifactId>sec-boot-parent</artifactId>
        <groupId>cn.lioyan</groupId>
        <version>${revision}</version>
        <relativePath>../sec-boot-parent</relativePath>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>sec-boot-file</artifactId>
    <name>SEC Boot File</name>
    <url>${web.url}</url>
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>
    <scm>
        <tag>master</tag>
        <url>git@github.com:lioyan1994111/sec-boot.git</url>
        <connection>git@github.com:lioyan1994111/sec-boot.git</connection>
        <developerConnection>git@github.com:lioyan1994111/sec-boot.git</developerConnection>
    </scm>
    <properties>
        <hadoop.version>3.3.1</hadoop.version>
    </properties>


    <dependencies>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-hdfs-client</artifactId>
            <version>${hadoop.version}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.hadoop</groupId>
            <artifactId>hadoop-common</artifactId>
            <version>${hadoop.version}</version>
        </dependency>
    </dependencies>

</project>