swaggerblueprint

Blueprint project for spring boot application with OpenApi Swagger docs
git clone git://git.wimdupont.com/swaggerblueprint.git
Log | Files | Refs | README | LICENSE

pom.xml (1669B)


      1 <?xml version="1.0" encoding="UTF-8"?>
      2 <project xmlns="http://maven.apache.org/POM/4.0.0"
      3          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      4          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
      5     <modelVersion>4.0.0</modelVersion>
      6 
      7     <groupId>com.wimdupont</groupId>
      8     <artifactId>swagger-blueprint</artifactId>
      9     <version>1.0-SNAPSHOT</version>
     10     <parent>
     11         <groupId>org.springframework.boot</groupId>
     12         <artifactId>spring-boot-starter-parent</artifactId>
     13         <version>3.3.0</version>
     14         <relativePath/> <!-- lookup parent from repository -->
     15     </parent>
     16     <properties>
     17         <springdoc-openapi.version>2.5.0</springdoc-openapi.version>
     18         <maven.compiler.source>21</maven.compiler.source>
     19         <maven.compiler.target>21</maven.compiler.target>
     20     </properties>
     21 
     22     <dependencies>
     23         <dependency>
     24             <groupId>org.springframework.boot</groupId>
     25             <artifactId>spring-boot-starter-web</artifactId>
     26         </dependency>
     27         <dependency>
     28             <groupId>org.springframework.boot</groupId>
     29             <artifactId>spring-boot-starter-validation</artifactId>
     30         </dependency>
     31         <dependency>
     32             <groupId>org.springframework.boot</groupId>
     33             <artifactId>spring-boot-starter-test</artifactId>
     34             <scope>test</scope>
     35         </dependency>
     36         <dependency>
     37             <groupId>org.springdoc</groupId>
     38             <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
     39             <version>${springdoc-openapi.version}</version>
     40         </dependency>
     41     </dependencies>
     42 </project>