|
59 | 59 | <com.googlecode.gson.version>2.10.1</com.googlecode.gson.version> |
60 | 60 | <com.h2database.version>2.2.224</com.h2database.version> |
61 | 61 | <com.jcraft.jsch.version>0.1.55</com.jcraft.jsch.version> |
62 | | - <com.squareup.okhttp3.version>4.12.0</com.squareup.okhttp3.version> |
| 62 | + <com.squareup.okhttp3.version>5.0.0-alpha.12</com.squareup.okhttp3.version> |
63 | 63 | <com.squareup.okio.version>3.6.0</com.squareup.okio.version> |
64 | 64 | <commons-fileupload.version>1.5</commons-fileupload.version> |
65 | 65 | <commons-io.version>2.14.0</commons-io.version> |
66 | 66 | <commons-lang.version>2.6</commons-lang.version> |
67 | 67 | <enforcer.skip>false</enforcer.skip> |
68 | 68 | <integration.mysql.db.image>quay.io/eclipse/che--centos--mysql-57-centos7:latest-e08ee4d43b7356607685b69bde6335e27cf20c020f345b6c6c59400183882764</integration.mysql.db.image> |
69 | 69 | <integration.postgresql.db.image>quay.io/eclipse/che--centos--postgresql-13-centos7:1-71b24684d64da46f960682cc4216222a7e4ed8b1a31dd5a865b3e71afdea20d2</integration.postgresql.db.image> |
70 | | - <io.fabric8.kubernetes-client>6.10.0</io.fabric8.kubernetes-client> |
| 70 | + <io.fabric8.kubernetes-client.version>7.1.0</io.fabric8.kubernetes-client.version> |
| 71 | + <io.fabric8.openshift-server-mock.version>6.13.5</io.fabric8.openshift-server-mock.version> |
71 | 72 | <io.github.mweirauch.micrometer-jvm-extras.version>0.2.2</io.github.mweirauch.micrometer-jvm-extras.version> |
72 | 73 | <io.jaegertracing.micrometer.version>1.8.1</io.jaegertracing.micrometer.version> |
73 | 74 | <io.jaegertracing.version>1.8.1</io.jaegertracing.version> |
|
138 | 139 | <org.apache.maven.version>3.9.4</org.apache.maven.version> |
139 | 140 | <org.apache.tomcat.version>10.1.14</org.apache.tomcat.version> |
140 | 141 | <org.codehaus.plexus.utils.version>3.4.1</org.codehaus.plexus.utils.version> |
| 142 | + <org.eclipse.jetty.version>11.0.24</org.eclipse.jetty.version> |
141 | 143 | <org.eclipse.persistence.eclipselink.version>2.7.10</org.eclipse.persistence.eclipselink.version> |
142 | 144 | <org.eclipse.persistence.version>2.2.3</org.eclipse.persistence.version> |
143 | 145 | <org.eclipse.sisu.version>0.9.0.M2</org.eclipse.sisu.version> |
|
284 | 286 | <groupId>com.squareup.okhttp3</groupId> |
285 | 287 | <artifactId>okhttp</artifactId> |
286 | 288 | <version>${com.squareup.okhttp3.version}</version> |
287 | | - <exclusions> |
288 | | - <exclusion> |
289 | | - <artifactId>kotlin-stdlib-jdk8</artifactId> |
290 | | - <groupId>org.jetbrains.kotlin</groupId> |
291 | | - </exclusion> |
292 | | - <exclusion> |
293 | | - <artifactId>kotlin-stdlib-common</artifactId> |
294 | | - <groupId>org.jetbrains.kotlin</groupId> |
295 | | - </exclusion> |
296 | | - </exclusions> |
| 289 | + </dependency> |
| 290 | + <dependency> |
| 291 | + <groupId>com.squareup.okhttp3</groupId> |
| 292 | + <artifactId>okhttp-jvm</artifactId> |
| 293 | + <version>${com.squareup.okhttp3.version}</version> |
297 | 294 | </dependency> |
298 | 295 | <dependency> |
299 | 296 | <groupId>com.squareup.okio</groupId> |
|
335 | 332 | <dependency> |
336 | 333 | <groupId>io.fabric8</groupId> |
337 | 334 | <artifactId>openshift-server-mock</artifactId> |
338 | | - <version>${io.fabric8.kubernetes-client}</version> |
| 335 | + <version>${io.fabric8.openshift-server-mock.version}</version> |
339 | 336 | </dependency> |
340 | 337 | <dependency> |
341 | 338 | <groupId>io.github.mweirauch</groupId> |
|
1453 | 1450 | <dependency> |
1454 | 1451 | <groupId>io.fabric8</groupId> |
1455 | 1452 | <artifactId>kubernetes-client-api</artifactId> |
1456 | | - <version>${io.fabric8.kubernetes-client}</version> |
| 1453 | + <version>${io.fabric8.kubernetes-client.version}</version> |
1457 | 1454 | <type>pom</type> |
1458 | 1455 | <scope>import</scope> |
1459 | 1456 | </dependency> |
|
1481 | 1478 | <version>${che.version}</version> |
1482 | 1479 | <scope>test</scope> |
1483 | 1480 | </dependency> |
| 1481 | + <dependency> |
| 1482 | + <groupId>org.eclipse.jetty</groupId> |
| 1483 | + <artifactId>jetty-security</artifactId> |
| 1484 | + <version>${org.eclipse.jetty.version}</version> |
| 1485 | + <scope>test</scope> |
| 1486 | + </dependency> |
| 1487 | + <dependency> |
| 1488 | + <groupId>org.eclipse.jetty</groupId> |
| 1489 | + <artifactId>jetty-servlet</artifactId> |
| 1490 | + <version>${org.eclipse.jetty.version}</version> |
| 1491 | + <scope>test</scope> |
| 1492 | + </dependency> |
| 1493 | + <dependency> |
| 1494 | + <groupId>org.eclipse.jetty</groupId> |
| 1495 | + <artifactId>jetty-util</artifactId> |
| 1496 | + <version>${org.eclipse.jetty.version}</version> |
| 1497 | + <scope>test</scope> |
| 1498 | + </dependency> |
1484 | 1499 | </dependencies> |
1485 | 1500 | </dependencyManagement> |
1486 | 1501 | <repositories> |
|
1918 | 1933 | <!-- Exclude javax dependencies in favor of Jakarta --> |
1919 | 1934 | <exclude>javax.activation:activation</exclude> |
1920 | 1935 | <exclude>javax.activation:javax.activation-api</exclude> |
1921 | | - <exclude>javax.annotation:javax.annotation-api</exclude> |
| 1936 | + <!-- Uncomment when the dependency is removed from io.fabric8.kubernetes-client --> |
| 1937 | + <!-- <exclude>javax.annotation:javax.annotation-api</exclude>--> |
1922 | 1938 | <exclude>javax.enterprise:cdi-api</exclude> |
1923 | 1939 | <exclude>javax.inject:javax.inject</exclude> |
1924 | 1940 | <exclude>javax.json:javax.json-api</exclude> |
|
0 commit comments