|
1 |
| -<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/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" |
| 2 | + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 4 | <modelVersion>4.0.0</modelVersion>
|
3 | 5 | <groupId>org.springdoc</groupId>
|
4 | 6 | <artifactId>springdoc-openapi</artifactId>
|
|
11 | 13 | <parent>
|
12 | 14 | <groupId>org.springframework.boot</groupId>
|
13 | 15 | <artifactId>spring-boot-starter-parent</artifactId>
|
14 |
| - <version>2.6.4</version> |
| 16 | + <version>2.6.6</version> |
15 | 17 | </parent>
|
16 | 18 |
|
17 | 19 | <licenses>
|
|
139 | 141 | <artifactId>spring-native</artifactId>
|
140 | 142 | <version>${spring-native.version}</version>
|
141 | 143 | </dependency>
|
142 |
| - |
| 144 | + <!-- spring Cloud --> |
| 145 | + <dependency> |
| 146 | + <groupId>org.springframework.cloud</groupId> |
| 147 | + <artifactId>spring-cloud-dependencies</artifactId> |
| 148 | + <version>${spring-cloud.version}</version> |
| 149 | + <type>pom</type> |
| 150 | + <scope>import</scope> |
| 151 | + </dependency> |
143 | 152 | <!-- SpringDoc -->
|
144 | 153 | <dependency>
|
145 | 154 | <groupId>org.springdoc</groupId>
|
|
201 | 210 | <artifactId>springdoc-openapi-native</artifactId>
|
202 | 211 | <version>${project.version}</version>
|
203 | 212 | </dependency>
|
204 |
| - <dependency> |
205 |
| - <groupId>org.springframework.cloud</groupId> |
206 |
| - <artifactId>spring-cloud-dependencies</artifactId> |
207 |
| - <version>${spring-cloud.version}</version> |
208 |
| - <type>pom</type> |
209 |
| - <scope>import</scope> |
210 |
| - </dependency> |
211 | 213 | </dependencies>
|
212 | 214 | </dependencyManagement>
|
213 | 215 | <dependencies>
|
|
233 | 235 | </plugin>
|
234 | 236 | </plugins>
|
235 | 237 | </pluginManagement>
|
| 238 | + <plugins> |
| 239 | + <plugin> |
| 240 | + <groupId>org.owasp</groupId> |
| 241 | + <artifactId>dependency-check-maven</artifactId> |
| 242 | + <configuration> |
| 243 | + <skipSystemScope>true</skipSystemScope> |
| 244 | + </configuration> |
| 245 | + <executions> |
| 246 | + <execution> |
| 247 | + <goals> |
| 248 | + <goal>check</goal> |
| 249 | + </goals> |
| 250 | + </execution> |
| 251 | + </executions> |
| 252 | + </plugin> |
| 253 | + </plugins> |
236 | 254 | </build>
|
237 | 255 |
|
238 | 256 | <profiles>
|
|
0 commit comments