This is an automated email from the ASF dual-hosted git repository. rgoers pushed a commit to branch add-mongodb in repository https://gitbox.apache.org/repos/asf/logging-flume.git
commit 6bb68632bf9368bc4f6af460d1e27d7123519e5f Author: Ralph Goers <[email protected]> AuthorDate: Thu Sep 10 22:34:44 2026 -0700 Add MongoDB Sink to bom --- flume-bom/pom.xml | 6 ++++++ flume-third-party/pom.xml | 7 +++++++ 2 files changed, 13 insertions(+) diff --git a/flume-bom/pom.xml b/flume-bom/pom.xml index f65016bd..0fa75c58 100644 --- a/flume-bom/pom.xml +++ b/flume-bom/pom.xml @@ -43,6 +43,7 @@ <flume-jdbc.version>2.0.0-SNAPSHOT</flume-jdbc.version> <flume-jms.version>2.0.0-SNAPSHOT</flume-jms.version> <flume-kafka.version>2.0.0-SNAPSHOT</flume-kafka.version> + <flume-mongodb.version>2.0.0-SNAPSHOT</flume-mongodb.version> <flume-scribe.version>2.0.0-SNAPSHOT</flume-scribe.version> <flume-spring-boot.version>2.1.0-SNAPSHOT</flume-spring-boot.version> <flume-taildir.version>2.0.0-SNAPSHOT</flume-taildir.version> @@ -193,6 +194,11 @@ <artifactId>flume-kafka-source</artifactId> <version>${flume-kafka.version}</version> </dependency> + <dependency> + <groupId>org.apache.flume</groupId> + <artifactId>flume-mongodb-sink</artifactId> + <version>${flume-mongodb.version}</version> + </dependency> <dependency> <groupId>org.apache.flume.flume-ng-sources</groupId> <artifactId>flume-scribe-source</artifactId> diff --git a/flume-third-party/pom.xml b/flume-third-party/pom.xml index f648a82b..21fded1c 100644 --- a/flume-third-party/pom.xml +++ b/flume-third-party/pom.xml @@ -47,6 +47,7 @@ <commons-text.version>1.15.0</commons-text.version> <curator.version>5.9.0</curator.version> <derby.version>10.17.1.0</derby.version> + <errorprone.version>2.50.0</errorprone.version> <jackson-annotations.version>2.22</jackson-annotations.version> <fasterxml.jackson.version>2.22.1</fasterxml.jackson.version> <fasterxml.jackson.databind.version>2.22.1</fasterxml.jackson.databind.version> @@ -143,6 +144,12 @@ <scope>compile</scope> </dependency> + <dependency> + <groupId>com.google.errorprone</groupId> + <artifactId>error_prone_annotations</artifactId> + <version>${errorprone.version}</version> + </dependency> + <dependency> <groupId>jakarta.servlet</groupId> <artifactId>jakarta.servlet-api</artifactId>
