<?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.songxinqiang</groupId>
        <artifactId>oss-parent</artifactId>
        <version>2.0.0</version>
    </parent>

    <artifactId>swagger-spring-boot-starter-ui</artifactId>
    <packaging>jar</packaging>
    <version>2.0.5.RELEASE</version>


    <name>SpringBootSwaggerStarter-UI</name>
    <description>
        配合在SpringBootSwaggerStarter，这只包含ui文件，在springfox官方提供的原版界面文件基础上修改了显示语言，简化了显示内容。
        具体使用请查看：https://my.oschina.net/songxinqiang/blog/1490463
    </description>
    <url>https://gitee.com/songxinqiang/SpringBootSwaggerStarter-UI</url>

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

    <developers>
        <developer>
            <name>阿信sxq</name>
            <email>songxinqiang@vip.qq.com</email>
            <url>https://my.oschina.net/songxinqiang/</url>
            <timezone>+8</timezone>
        </developer>
    </developers>

    <scm>
        <url>https://gitee.com/songxinqiang/SpringBootSwaggerStarter-UI</url>
        <connection>scm:git:https://gitee.com/songxinqiang/SpringBootSwaggerStarter-UI.git</connection>
        <developerConnection>scm:git:git@gitee.com:songxinqiang/SpringBootSwaggerStarter-UI.git</developerConnection>
    </scm>

    <properties>
        <swagger-starter.version>2.0.5.RELEASE</swagger-starter.version>
    </properties>


    <dependencies>
        <dependency>
            <groupId>cn.songxinqiang</groupId>
            <artifactId>swagger-spring-boot-starter</artifactId>
            <version>${swagger-starter.version}</version>
        </dependency>
    </dependencies>

    <build>
        <resources>
            <resource>
                <directory>${project.basedir}/src/main/web</directory>
                <targetPath>META-INF/resources/</targetPath>
            </resource>
        </resources>
    </build>

</project>
