|
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 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 1 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 2 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
2 | 3 | <modelVersion>4.0.0</modelVersion> |
3 | 4 | <parent> |
4 | 5 | <groupId>io.serverlessworkflow</groupId> |
|
7 | 8 | </parent> |
8 | 9 | <artifactId>serverlessworkflow-impl-openapi</artifactId> |
9 | 10 | <name>Serverless Workflow :: Impl :: OpenAPI</name> |
| 11 | + |
| 12 | + <properties> |
| 13 | + <version.org.mozilla.rhino>1.7.15.1</version.org.mozilla.rhino> |
| 14 | + <version.org.apache.commons.lang3>3.20.0</version.org.apache.commons.lang3> |
| 15 | + <version.commons.codec>1.20.0</version.commons.codec> |
| 16 | + </properties> |
| 17 | + |
10 | 18 | <dependencies> |
11 | 19 | <dependency> |
12 | 20 | <groupId>jakarta.ws.rs</groupId> |
|
25 | 33 | <artifactId>swagger-parser</artifactId> |
26 | 34 | <version>${version.io.swagger.parser.v3}</version> |
27 | 35 | </dependency> |
| 36 | + |
| 37 | + <!-- Swagger Parser brings a few dependencies with CVE, we are breaking them here --> |
| 38 | + <!-- Once they upgrade, we can remove --> |
| 39 | + <dependency> |
| 40 | + <groupId>org.mozilla</groupId> |
| 41 | + <artifactId>rhino</artifactId> |
| 42 | + <version>${version.org.mozilla.rhino}</version> |
| 43 | + </dependency> |
| 44 | + <dependency> |
| 45 | + <groupId>org.apache.commons</groupId> |
| 46 | + <artifactId>commons-lang3</artifactId> |
| 47 | + <version>${version.org.apache.commons.lang3}</version> |
| 48 | + </dependency> |
| 49 | + <dependency> |
| 50 | + <groupId>commons-codec</groupId> |
| 51 | + <artifactId>commons-codec</artifactId> |
| 52 | + <version>${version.commons.codec}</version> |
| 53 | + </dependency> |
| 54 | + |
28 | 55 | <dependency> |
29 | 56 | <groupId>org.junit.jupiter</groupId> |
30 | 57 | <artifactId>junit-jupiter-engine</artifactId> |
|
0 commit comments