|
11 | 11 | <parent> |
12 | 12 | <groupId>org.springframework.boot</groupId> |
13 | 13 | <artifactId>spring-boot-starter-parent</artifactId> |
14 | | - <version>2.7.15</version> |
| 14 | + <version>3.3.13</version> |
15 | 15 | </parent> |
16 | 16 | <build> |
17 | 17 | <plugins> |
|
40 | 40 |
|
41 | 41 | <!-- pass any necessary config options --> |
42 | 42 | <configOptions> |
43 | | - <documentationProvider>springfox</documentationProvider> |
44 | 43 | <serializableModel>true</serializableModel> |
45 | 44 | <snapshotVersion>true</snapshotVersion> |
46 | 45 | </configOptions> |
|
50 | 49 |
|
51 | 50 | </executions> |
52 | 51 | </plugin> |
53 | | - <plugin> |
54 | | - <groupId>org.apache.maven.plugins</groupId> |
55 | | - <artifactId>maven-compiler-plugin</artifactId> |
56 | | - <version>3.11.0</version> |
57 | | - <configuration> |
58 | | - <source>1.8</source> |
59 | | - <target>1.8</target> |
60 | | - <proc>none</proc> |
61 | | - </configuration> |
62 | | - </plugin> |
63 | 52 | </plugins> |
64 | 53 | <pluginManagement> |
65 | 54 | </pluginManagement> |
|
80 | 69 | <artifactId>spring-data-commons</artifactId> |
81 | 70 | </dependency> |
82 | 71 | <!--SpringFox dependencies --> |
83 | | - <dependency> |
84 | | - <groupId>io.springfox</groupId> |
85 | | - <artifactId>springfox-swagger2</artifactId> |
86 | | - <version>${springfox.version}</version> |
87 | | - </dependency> |
88 | 72 | <dependency> |
89 | 73 | <groupId>org.webjars</groupId> |
90 | 74 | <artifactId>swagger-ui</artifactId> |
|
100 | 84 | <artifactId>jsr305</artifactId> |
101 | 85 | <version>3.0.2</version> |
102 | 86 | </dependency> |
| 87 | + <dependency> |
| 88 | + <groupId>org.springdoc</groupId> |
| 89 | + <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId> |
| 90 | + <version>${springdoc.version}</version> |
| 91 | + </dependency> |
103 | 92 | <dependency> |
104 | 93 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
105 | 94 | <artifactId>jackson-dataformat-yaml</artifactId> |
|
129 | 118 | </dependency> |
130 | 119 | </dependencies> |
131 | 120 | <properties> |
132 | | - <springfox.version>2.9.2</springfox.version> |
133 | 121 | <swagger-ui.version>4.15.5</swagger-ui.version> |
| 122 | + <springdoc.version>2.6.0</springdoc.version> |
134 | 123 | </properties> |
135 | 124 | </project> |
0 commit comments