<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>
        <groupId>cn.charlab.os</groupId>
        <artifactId>os-spring-boot-parent</artifactId>
        <version>1.0.0</version>
    </parent>
    <version>${parent.version}</version>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>os-spring-boot-autoconfigure</artifactId>
    <packaging>jar</packaging>
    <name>Os Spring Boot AutoConfigure</name>
    <description>Os Spring Boot AutoConfigure</description>



    <licenses>
        <license>
            <name>Mulan PubL v2</name>
            <url>http://license.coscl.org.cn/MulanPubL-2.0</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>wilson</name>
            <email>wilson@vip.email.cn</email>
            <organization>charlab</organization>
            <organizationUrl>https://atomgit.com/wilson</organizationUrl>
        </developer>
    </developers>

    <scm>
        <connection>scm:git:git@atomgit.com:charlab/os-spring-boot-starter.git</connection>
        <developerConnection>scm:git:git@atomgit.com:charlab/os-spring-boot-starter.git</developerConnection>
        <url>git@atomgit.com:charlab/os-spring-boot-starter.git</url>
    </scm>

    <dependencies>
        <dependency>
            <groupId>com.huaweicloud</groupId>
            <artifactId>esdk-obs-java</artifactId>
        </dependency>
        <!-- Spring Boot dependencies -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-logging</artifactId>
            <optional>true</optional>
        </dependency>

        <!-- @ConfigurationProperties annotation processing (metadata for IDEs) -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <optional>true</optional>
        </dependency>

        <!-- Test Dependencies -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>


        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.amazonaws</groupId>
            <artifactId>aws-java-sdk-s3</artifactId>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
        </dependency>
        <dependency>
            <groupId>com.aliyun.oss</groupId>
            <artifactId>aliyun-sdk-oss</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>8</source>
                    <target>8</target>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>
