Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions modules/openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,17 +54,14 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>2.2.43</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>2.2.43</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>2.2.43</version>
</dependency>

<!-- Jackson comes transitively from swagger-core dependency -->
Expand Down
4 changes: 0 additions & 4 deletions modules/samples/swagger-server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@
<maven.compiler.target>17</maven.compiler.target>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<moshi.version>1.15.0</moshi.version>
<swagger.version>2.2.18</swagger.version>
</properties>

<dependencies>
Expand Down Expand Up @@ -81,17 +80,14 @@
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>${swagger.version}</version>
</dependency>

<!-- Servlet API -->
Expand Down
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -509,6 +509,7 @@
<maven.compiler.release>17</maven.compiler.release>
<jacoco.version>0.8.14</jacoco.version>
<asm.version>9.9.1</asm.version>
<swagger.version>2.2.43</swagger.version>
</properties>

<dependencyManagement>
Expand Down Expand Up @@ -1037,6 +1038,21 @@
<artifactId>byte-buddy</artifactId>
<version>1.18.5</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-core</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-models</artifactId>
<version>${swagger.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.core.v3</groupId>
<artifactId>swagger-annotations</artifactId>
<version>${swagger.version}</version>
</dependency>
</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -1452,7 +1468,7 @@
<goal>execute</goal>
</goals>
<configuration>
<skip>${skipScmValidation}</skip>
<skipScriptExecution>${skipScmValidation}</skipScriptExecution>
<scripts>
<script><![CDATA[
// Ensure that the <scm> element is present and correctly populated. This prevents
Expand Down