|
18 | 18 | <java.module.name>org.kie.server.services.openshift</java.module.name> |
19 | 19 | <!-- Server mock version 4.7.2 doesn't handle label selectors properly, need to use older version. --> |
20 | 20 | <version.kubernetes-client.server-mock>4.6.0</version.kubernetes-client.server-mock> |
| 21 | + <!-- Add this to match other versions of okhttp3 and okio used elsewhere --> |
| 22 | + <version.com.squareup.okhttp3>4.12.0</version.com.squareup.okhttp3> |
| 23 | + <version.com.squareup.okio>3.6.0</version.com.squareup.okio> |
21 | 24 | </properties> |
22 | 25 |
|
23 | 26 | <dependencyManagement> |
|
32 | 35 |
|
33 | 36 | <!-- Override fabric8 dependencies specified from parent pom with newer |
34 | 37 | version --> |
| 38 | + <dependency> |
| 39 | + <groupId>com.squareup.okhttp3</groupId> |
| 40 | + <artifactId>logging-interceptor</artifactId> |
| 41 | + <version>${version.com.squareup.okhttp3}</version> |
| 42 | + </dependency> |
| 43 | + <dependency> |
| 44 | + <groupId>com.squareup.okio</groupId> |
| 45 | + <artifactId>okio</artifactId> |
| 46 | + <version>${version.com.squareup.okio}</version> |
| 47 | + </dependency> |
| 48 | + <dependency> |
| 49 | + <groupId>com.squareup.okhttp3</groupId> |
| 50 | + <artifactId>mockwebserver</artifactId> |
| 51 | + <version>${version.com.squareup.okhttp3}</version> |
| 52 | + </dependency> |
| 53 | + |
35 | 54 | <dependency> |
36 | 55 | <groupId>io.fabric8</groupId> |
37 | 56 | <artifactId>kubernetes-model</artifactId> |
|
76 | 95 | <version>${version.org.yaml.snakeyaml}</version> |
77 | 96 | <scope>test</scope> |
78 | 97 | </dependency> |
| 98 | + <dependency> |
| 99 | + <groupId>org.bouncycastle</groupId> |
| 100 | + <artifactId>bcprov-jdk15to18</artifactId> |
| 101 | + <version>${version.org.bouncycastle}</version> |
| 102 | + <scope>test</scope> |
| 103 | + </dependency> |
| 104 | + <dependency> |
| 105 | + <groupId>org.bouncycastle</groupId> |
| 106 | + <artifactId>bcpkix-jdk15to18</artifactId> |
| 107 | + <version>${version.org.bouncycastle}</version> |
| 108 | + <scope>test</scope> |
| 109 | + </dependency> |
| 110 | + <dependency> |
| 111 | + <groupId>org.bouncycastle</groupId> |
| 112 | + <artifactId>bcpg-jdk15to18</artifactId> |
| 113 | + <version>${version.org.bouncycastle}</version> |
| 114 | + <scope>test</scope> |
| 115 | + </dependency> |
79 | 116 | </dependencies> |
80 | 117 | </dependencyManagement> |
81 | 118 |
|
|
137 | 174 | <artifactId>openshift-server-mock</artifactId> |
138 | 175 | <scope>test</scope> |
139 | 176 | </dependency> |
| 177 | + <dependency> |
| 178 | + <groupId>org.bouncycastle</groupId> |
| 179 | + <artifactId>bcprov-jdk15to18</artifactId> |
| 180 | + <scope>test</scope> |
| 181 | + </dependency> |
| 182 | + <dependency> |
| 183 | + <groupId>org.bouncycastle</groupId> |
| 184 | + <artifactId>bcpkix-jdk15to18</artifactId> |
| 185 | + <scope>test</scope> |
| 186 | + </dependency> |
| 187 | + <dependency> |
| 188 | + <groupId>org.bouncycastle</groupId> |
| 189 | + <artifactId>bcpg-jdk15to18</artifactId> |
| 190 | + <scope>test</scope> |
| 191 | + </dependency> |
| 192 | + |
140 | 193 | <dependency> |
141 | 194 | <groupId>com.fasterxml.jackson.dataformat</groupId> |
142 | 195 | <artifactId>jackson-dataformat-yaml</artifactId> |
|
0 commit comments