Skip to content

Commit

Permalink
fix native build
Browse files Browse the repository at this point in the history
  • Loading branch information
simon.wagner authored and simonnepomuk committed Sep 5, 2024
1 parent 15d9f83 commit 41603fd
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,8 @@

<!-- OpenAPI -->
<openapi-diff.version>2.0.1</openapi-diff.version>
<!-- We need to manually include the version because of dependency issues with snakeyaml -->
<swagger-parser-v3.version>2.1.22</swagger-parser-v3.version>

<!-- Dependency versions -->
<lombok.version>1.18.34</lombok.version>
Expand Down Expand Up @@ -618,6 +620,11 @@
<artifactId>openapi-diff-core</artifactId>
<version>${openapi-diff.version}</version>
</dependency>
<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser-v3</artifactId>
<version>${swagger-parser-v3.version}</version>
</dependency>

<dependency>
<groupId>com.github.everit-org.json-schema</groupId>
Expand Down
7 changes: 7 additions & 0 deletions schema-util/openapi/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,17 @@
<artifactId>openapi-diff-core</artifactId>
</dependency>

<dependency>
<groupId>io.swagger.parser.v3</groupId>
<artifactId>swagger-parser-v3</artifactId>
</dependency>


<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
</dependency>

<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
Expand Down

0 comments on commit 41603fd

Please sign in to comment.