<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>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>os-spring-boot-starter</artifactId>
    <packaging>jar</packaging>
    <name>os Spring Boot Starter</name>
    <description>oss Spring Boot Starter</description>

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>


    <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>
        <!-- Spring Boot dependencies -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter</artifactId>
        </dependency>

        <dependency>
            <groupId>cn.charlab.os</groupId>
            <artifactId>os-spring-boot-autoconfigure</artifactId>
            <version>${parent.version}</version>
        </dependency>
        <dependency>
            <groupId>com.huaweicloud</groupId>
            <artifactId>esdk-obs-java</artifactId>
        </dependency>

    </dependencies>




    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.8.1</version>
                <configuration>
                    <source>${project.build.sourceEncoding}</source>
                    <target>${project.build.sourceEncoding}</target>
                </configuration>
            </plugin>
            <!-- Javadoc -->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>3.1.1</version>
                <executions>
                    <execution>
                        <phase>package</phase>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

        </plugins>
    </build>
</project>
