mirror of
https://gitee.com/ssssssss-team/magic-api.git
synced 2026-05-08 11:25:51 +08:00
32 lines
1.2 KiB
XML
32 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>org.ssssssss</groupId>
|
|
<artifactId>magic-api-plugins</artifactId>
|
|
<version>2.2.2</version>
|
|
</parent>
|
|
<artifactId>magic-api-plugin-swagger</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>magic-api-plugin-swagger</name>
|
|
<description>magic-api-plugin-swagger</description>
|
|
<properties>
|
|
<swagger.version>2.9.2</swagger.version>
|
|
</properties>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${swagger.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|