This is an automated email from the ASF dual-hosted git repository. fmariani pushed a commit to branch camel-spring-boot-4.0.0-branch in repository https://gitbox.apache.org/repos/asf/camel-spring-boot.git
commit e27fedc5813efee085c3afbcab8d3ea7229deb1c Author: Tom Cunningham <[email protected]> AuthorDate: Fri Sep 29 14:16:41 2023 -0400 Add snappy-java override (#272) --- .../src/main/resources/pom.xml | 5 +++++ tooling/redhat-camel-spring-boot-bom/pom.xml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml b/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml index e1fa685691f..d45914411d5 100644 --- a/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml +++ b/tooling/redhat-camel-spring-boot-bom-generator/src/main/resources/pom.xml @@ -101,6 +101,11 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>${commons-compress-version}</version> + <!-- Overrides snappy-java --> + <dependency> + <groupId>org.xerial.snappy</groupId> + <artifactId>snappy-java</artifactId> + <version>${snappy-java-version}</version> </dependency> <!-- Overrides elastic-search dependency since SB is using an older version --> <dependency> diff --git a/tooling/redhat-camel-spring-boot-bom/pom.xml b/tooling/redhat-camel-spring-boot-bom/pom.xml index 8a5ffad44ee..641d35d7c18 100644 --- a/tooling/redhat-camel-spring-boot-bom/pom.xml +++ b/tooling/redhat-camel-spring-boot-bom/pom.xml @@ -101,6 +101,11 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-compress</artifactId> <version>1.21</version> + <!-- Overrides snappy-java --> + <dependency> + <groupId>org.xerial.snappy</groupId> + <artifactId>snappy-java</artifactId> + <version>${snappy-java-version}</version> </dependency> <!-- Overrides elastic-search dependency since SB is using an older version --> <dependency>
