mirror of
https://github.com/valitydev/openapi-generator.git
synced 2024-11-08 19:33:55 +00:00
fe8b0cf07b
Fix #3025
41 lines
1.4 KiB
XML
41 lines
1.4 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<groupId>io.swagger</groupId>
|
|
<artifactId>swagger-springboot-server</artifactId>
|
|
<packaging>jar</packaging>
|
|
<name>swagger-springboot-server</name>
|
|
<version>1.0.0</version>
|
|
<properties>
|
|
<springfox-version>2.4.0</springfox-version>
|
|
</properties>
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.3.3.RELEASE</version>
|
|
</parent>
|
|
<build>
|
|
<sourceDirectory>src/main/java</sourceDirectory>
|
|
</build>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-tomcat</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<!--SpringFox dependencies -->
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
<version>${springfox-version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
<version>${springfox-version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project> |