2021-01-06 22:02:36 +03:00
|
|
|
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
2023-02-11 12:54:26 +03:00
|
|
|
<version>3.0.2</version>
|
2021-01-06 22:02:36 +03:00
|
|
|
<relativePath/> <!-- lookup parent from repository -->
|
|
|
|
</parent>
|
2023-02-11 10:11:24 +03:00
|
|
|
|
2021-01-06 22:02:36 +03:00
|
|
|
<groupId>org.sadtech.example</groupId>
|
|
|
|
<artifactId>swagger</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-02-11 10:11:24 +03:00
|
|
|
|
2021-01-06 22:02:36 +03:00
|
|
|
<name>swagger</name>
|
|
|
|
<description>Demo project for Swagger</description>
|
|
|
|
|
|
|
|
<properties>
|
2023-02-11 10:11:24 +03:00
|
|
|
<java.version>17</java.version>
|
2021-01-06 22:02:36 +03:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springdoc</groupId>
|
2023-02-11 12:54:26 +03:00
|
|
|
<artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
|
|
|
|
<version>2.0.2</version>
|
2021-01-06 22:02:36 +03:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2023-02-11 10:11:24 +03:00
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>uPagge</id>
|
|
|
|
<name>Struchkov Mark</name>
|
|
|
|
<email>mark@struchkov.dev</email>
|
|
|
|
<url>https://mark.struchkov.dev</url>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
2021-01-06 22:02:36 +03:00
|
|
|
</project>
|