<?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>mongodao-parent</artifactId>
        <groupId>com.github.aidensuen</groupId>
        <version>3</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>common-repository</artifactId>
    <version>1.0</version>
    <packaging>jar</packaging>

    <name>common-repository</name>
    <description>Common Repository</description>
    <url>https://github.com/aidensuen</url>

    <dependencies>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-core</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-beans</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <optional>true</optional>
        </dependency>
    </dependencies>

    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <scm>
        <url>https://github.com/aidensuen/common-repository</url>
        <connection>scm:git:https://github.com/aidensuen/common-repository.git</connection>
        <developerConnection>scm:git:https://github.com/aidensuen/common-repository.git</developerConnection>
    </scm>

    <developers>
        <developer>
            <name>aidensuen</name>
            <email>AbnerSun2016@163.com</email>
            <url>https://github.com/aidensuen</url>
        </developer>
    </developers>
</project>