This is an automated email from the ASF dual-hosted git repository. joewitt pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/nifi.git
commit 4a46b087b866205fb85d92853fc82398612d35c9 Author: exceptionfactory <[email protected]> AuthorDate: Wed Mar 9 11:18:46 2022 -0600 NIFI-9782 This closes #5854. Excluded H2 DB from nifi-druid-bundle Signed-off-by: Joe Witt <[email protected]> --- nifi-nar-bundles/nifi-druid-bundle/pom.xml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/nifi-nar-bundles/nifi-druid-bundle/pom.xml b/nifi-nar-bundles/nifi-druid-bundle/pom.xml index fcc34be..cff1cd4 100644 --- a/nifi-nar-bundles/nifi-druid-bundle/pom.xml +++ b/nifi-nar-bundles/nifi-druid-bundle/pom.xml @@ -97,6 +97,10 @@ <groupId>commons-logging</groupId> <artifactId>commons-logging</artifactId> </exclusion> + <exclusion> + <groupId>com.h2database</groupId> + <artifactId>h2</artifactId> + </exclusion> </exclusions> </dependency> <dependency>
