This is an automated email from the ASF dual-hosted git repository.

haonan pushed a commit to branch Fix_some_commons_dependencies
in repository https://gitbox.apache.org/repos/asf/iotdb.git

commit eedf3d7e3532c3ce92371a5fad1c648c2e141ca8
Author: HTHou <[email protected]>
AuthorDate: Tue Oct 28 09:44:34 2025 +0800

    Fix some dependencies version fallback
---
 library-udf/pom.xml |  2 --
 pom.xml             | 13 +++++++++++++
 2 files changed, 13 insertions(+), 2 deletions(-)

diff --git a/library-udf/pom.xml b/library-udf/pom.xml
index 08191cb3ba7..2850257846d 100644
--- a/library-udf/pom.xml
+++ b/library-udf/pom.xml
@@ -31,8 +31,6 @@
     <properties>
         <maven.compiler.source>8</maven.compiler.source>
         <maven.compiler.target>8</maven.compiler.target>
-        <commons-math3.version>3.6.1</commons-math3.version>
-        <commons-lang3.version>3.18.0</commons-lang3.version>
     </properties>
     <dependencies>
         <dependency>
diff --git a/pom.xml b/pom.xml
index bbc1280899a..88e6fe9004f 100644
--- a/pom.xml
+++ b/pom.xml
@@ -66,9 +66,12 @@
         <cglib.version>3.3.0</cglib.version>
         <cmake.build.type>Release</cmake.build.type>
         <commons-cli.version>1.5.0</commons-cli.version>
+        <commons-codec.version>1.16.1</commons-codec.version>
         <commons-csv.version>1.10.0</commons-csv.version>
         <commons-jexl3.version>3.3</commons-jexl3.version>
+        <commons-math3.version>3.6.1</commons-math3.version>
         <commons-pool2.version>2.11.1</commons-pool2.version>
+        <commons-lang3.version>3.18.0</commons-lang3.version>
         <ctest.skip.tests>false</ctest.skip.tests>
         
<drill.freemarker.maven.plugin.version>1.21.1</drill.freemarker.maven.plugin.version>
         <dropwizard.metrics.version>4.2.19</dropwizard.metrics.version>
@@ -553,11 +556,21 @@
                 <artifactId>jakarta.validation-api</artifactId>
                 <version>${jakarta.validation-api.version}</version>
             </dependency>
+            <dependency>
+                <groupId>commons-codec</groupId>
+                <artifactId>commons-codec</artifactId>
+                <version>${commons-codec.version}</version>
+            </dependency>
             <dependency>
                 <groupId>org.apache.commons</groupId>
                 <artifactId>commons-pool2</artifactId>
                 <version>${commons-pool2.version}</version>
             </dependency>
+            <dependency>
+                <groupId>org.apache.commons</groupId>
+                <artifactId>commons-lang3</artifactId>
+                <version>${commons-lang3.version}</version>
+            </dependency>
             <dependency>
                 <groupId>io.dropwizard.metrics</groupId>
                 <artifactId>metrics-core</artifactId>

Reply via email to