This is an automated email from the ASF dual-hosted git repository. orpiske pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-k-runtime.git
commit 58210c71b09905831a9ae2cec321a839b6f934d0 Author: Otavio Rodolfo Piske <[email protected]> AuthorDate: Thu Jun 3 15:00:58 2021 +0200 Fixed itests-master tests failures due to missing BouncyCastle deps --- itests/camel-k-itests-master/pom.xml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/itests/camel-k-itests-master/pom.xml b/itests/camel-k-itests-master/pom.xml index 983a8be..ebe2722 100644 --- a/itests/camel-k-itests-master/pom.xml +++ b/itests/camel-k-itests-master/pom.xml @@ -73,6 +73,19 @@ <scope>test</scope> </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcprov-ext-jdk15on</artifactId> + <version>${bouncycastle-version}</version> + </dependency> + <dependency> + <groupId>org.bouncycastle</groupId> + <artifactId>bcpkix-jdk15on</artifactId> + <version>${bouncycastle-version}</version> + </dependency> + + + <!-- The following dependencies guarantee that this module is built after them. --> <dependency> <groupId>org.apache.camel.k</groupId>
