<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <parent>
    <groupId>com.github.luues.boot</groupId>
    <artifactId>boot-parent</artifactId>
    <version>1.0.3.5.RELEASE</version>
  </parent>
  <groupId>com.github.luues.boot</groupId>
  <artifactId>spring-boot-starter-swagger</artifactId>
  <version>1.0.3.5.RELEASE</version>
  <name>${project.artifactId}</name>
  <description>对swagger的简单封装</description>
  <url>https://github.com/luues/boot/tree/master/spring-boot/${project.name}</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>
  <properties>
    <swagger2-version>2.10.5</swagger2-version>
  </properties>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>com.github.luues.boot</groupId>
        <artifactId>spring-boot-starter-pom</artifactId>
        <version>${project.parent.version}</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.projectlombok</groupId>
      <artifactId>lombok</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-web</artifactId>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.github.luues.boot</groupId>
      <artifactId>spring-boot-starter-core</artifactId>
      <version>${project.parent.version}</version>
    </dependency>
    <dependency>
      <groupId>com.github.xiaoymin</groupId>
      <artifactId>knife4j-spring-boot-starter</artifactId>
      <version>2.0.9</version>
    </dependency>
    <dependency>
      <groupId>com.github.luues.tool</groupId>
      <artifactId>tool-core</artifactId>
    </dependency>
  </dependencies>
  <build>
    <finalName>${project.name}</finalName>
  </build>
</project>
