This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch camel-4.10.x in repository https://gitbox.apache.org/repos/asf/camel.git
commit f791b7666bc895f3bb526e374ee0bab132578b1d Author: Claus Ibsen <[email protected]> AuthorDate: Wed Jul 2 07:52:35 2025 +0200 CAMEL-22208 Optimize CachedOutputStream.pageToFileStream for large streams --- tests/camel-streamcaching-test/pom.xml | 46 ---------------------------------- 1 file changed, 46 deletions(-) diff --git a/tests/camel-streamcaching-test/pom.xml b/tests/camel-streamcaching-test/pom.xml index e2f8c14a470..9734f1ffd0f 100644 --- a/tests/camel-streamcaching-test/pom.xml +++ b/tests/camel-streamcaching-test/pom.xml @@ -38,57 +38,11 @@ <artifactId>camel-core</artifactId> <scope>test</scope> </dependency> - <dependency> - <groupId>org.apache.camel</groupId> - <artifactId>camel-support</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter-api</artifactId> - <scope>test</scope> - </dependency> <dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-test-junit5</artifactId> <scope>test</scope> </dependency> - <!-- testing --> - <!-- woodstox is needed by the StaxConverter test--> - <dependency> - <groupId>org.codehaus.woodstox</groupId> - <artifactId>woodstox-core-asl</artifactId> - <version>${woodstox-version}</version> - <scope>test</scope> - <exclusions> - <exclusion> - <groupId>javax.xml.stream</groupId> - <artifactId>stax-api</artifactId> - </exclusion> - </exclusions> - </dependency> - <dependency> - <groupId>org.junit.jupiter</groupId> - <artifactId>junit-jupiter</artifactId> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.hamcrest</groupId> - <artifactId>hamcrest</artifactId> - <version>${hamcrest-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.awaitility</groupId> - <artifactId>awaitility</artifactId> - <version>${awaitility-version}</version> - <scope>test</scope> - </dependency> - <dependency> - <groupId>org.assertj</groupId> - <artifactId>assertj-core</artifactId> - <scope>test</scope> - </dependency> <!-- logging --> <dependency> <groupId>org.apache.logging.log4j</groupId>
