This is an automated email from the ASF dual-hosted git repository. jackie pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/pinot.git
The following commit(s) were added to refs/heads/master by this push: new 051d927294 Add commons-beanutils as dependency (#13973) 051d927294 is described below commit 051d927294795628328e51611d913d5b25a2d73a Author: Xiaotian (Jackie) Jiang <17555551+jackie-ji...@users.noreply.github.com> AuthorDate: Tue Sep 10 21:38:47 2024 -0700 Add commons-beanutils as dependency (#13973) --- pinot-spi/pom.xml | 5 +++++ pom.xml | 12 ++++++++++++ 2 files changed, 17 insertions(+) diff --git a/pinot-spi/pom.xml b/pinot-spi/pom.xml index fb2e0c1a7e..bf6ef96e61 100644 --- a/pinot-spi/pom.xml +++ b/pinot-spi/pom.xml @@ -64,6 +64,11 @@ <groupId>org.apache.commons</groupId> <artifactId>commons-configuration2</artifactId> </dependency> + <!-- commons-beanutils is required by commons-configuration2 --> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> diff --git a/pom.xml b/pom.xml index 30bb891d0c..19d66302ae 100644 --- a/pom.xml +++ b/pom.xml @@ -200,6 +200,7 @@ <commons-math3.version>3.6.1</commons-math3.version> <commons-csv.version>1.11.0</commons-csv.version> <commons-configuration2.version>2.11.0</commons-configuration2.version> + <commons-beanutils.version>1.9.4</commons-beanutils.version> <commons-io.version>2.16.1</commons-io.version> <commons-codec.version>1.17.1</commons-codec.version> <commons-cli.version>1.9.0</commons-cli.version> @@ -986,6 +987,17 @@ </exclusion> </exclusions> </dependency> + <dependency> + <groupId>commons-beanutils</groupId> + <artifactId>commons-beanutils</artifactId> + <version>${commons-beanutils.version}</version> + <exclusions> + <exclusion> + <groupId>commons-logging</groupId> + <artifactId>commons-logging</artifactId> + </exclusion> + </exclusions> + </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@pinot.apache.org For additional commands, e-mail: commits-h...@pinot.apache.org