This is an automated email from the ASF dual-hosted git repository. oscerd pushed a commit to branch ci-issue/okhttp-version-itests in repository https://gitbox.apache.org/repos/asf/camel-kafka-connector.git
commit 167425bc25dee6837edf50ea542ece1d6ab9d9ab Author: Andrea Cosentino <[email protected]> AuthorDate: Fri May 15 12:25:50 2026 +0200 ci: define squareup-okhttp-version property for itests camel-dependencies renamed squareup-okhttp-version to squareup-okhttp5-version (okhttp 5) in Camel 4.21. tests/itests-parent/pom.xml still references the old name for the okhttp3/mockwebserver test deps, so after the 4.19->4.21 bump the property no longer resolved and every reactor build failed at project scanning ("could not read 3 projects"). Define squareup-okhttp-version=3.14.9 (the value Camel carried through 4.x, matching the okhttp3 MockWebServer API the itests use) in CKC's ow [...] Co-Authored-By: Claude Opus 4.7 (1M context) <[email protected]> --- parent/pom.xml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/parent/pom.xml b/parent/pom.xml index 0ce3d48439..d8e0bd8ffc 100644 --- a/parent/pom.xml +++ b/parent/pom.xml @@ -37,6 +37,9 @@ <version.javax.annotation-api>1.3.2</version.javax.annotation-api> <version.postgres>42.4.4</version.postgres> <version.jctools>3.3.0</version.jctools> + <!-- okhttp/mockwebserver for itests: owned here because camel-dependencies + renamed squareup-okhttp-version to squareup-okhttp5-version in 4.21 --> + <squareup-okhttp-version>3.14.9</squareup-okhttp-version> <version.maven.compiler>3.13.0</version.maven.compiler> <version.maven.javadoc>3.6.3</version.maven.javadoc>
