Skip to content

Commit 74fe8e6

Browse files
authored
Fix some dependencies version fallback (apache#16664)
1 parent aa899cc commit 74fe8e6

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

integration-test/pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -216,6 +216,7 @@
216216
<dependency>
217217
<groupId>org.fusesource.mqtt-client</groupId>
218218
<artifactId>mqtt-client</artifactId>
219+
<scope>test</scope>
219220
</dependency>
220221
<dependency>
221222
<groupId>org.apache.httpcomponents</groupId>

library-udf/pom.xml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,6 @@
3131
<properties>
3232
<maven.compiler.source>8</maven.compiler.source>
3333
<maven.compiler.target>8</maven.compiler.target>
34-
<commons-math3.version>3.6.1</commons-math3.version>
35-
<commons-lang3.version>3.18.0</commons-lang3.version>
3634
</properties>
3735
<dependencies>
3836
<dependency>

pom.xml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,12 @@
6666
<cglib.version>3.3.0</cglib.version>
6767
<cmake.build.type>Release</cmake.build.type>
6868
<commons-cli.version>1.5.0</commons-cli.version>
69+
<commons-codec.version>1.16.1</commons-codec.version>
6970
<commons-csv.version>1.10.0</commons-csv.version>
7071
<commons-jexl3.version>3.3</commons-jexl3.version>
72+
<commons-math3.version>3.6.1</commons-math3.version>
7173
<commons-pool2.version>2.11.1</commons-pool2.version>
74+
<commons-lang3.version>3.18.0</commons-lang3.version>
7275
<ctest.skip.tests>false</ctest.skip.tests>
7376
<drill.freemarker.maven.plugin.version>1.21.1</drill.freemarker.maven.plugin.version>
7477
<dropwizard.metrics.version>4.2.19</dropwizard.metrics.version>
@@ -553,11 +556,21 @@
553556
<artifactId>jakarta.validation-api</artifactId>
554557
<version>${jakarta.validation-api.version}</version>
555558
</dependency>
559+
<dependency>
560+
<groupId>commons-codec</groupId>
561+
<artifactId>commons-codec</artifactId>
562+
<version>${commons-codec.version}</version>
563+
</dependency>
556564
<dependency>
557565
<groupId>org.apache.commons</groupId>
558566
<artifactId>commons-pool2</artifactId>
559567
<version>${commons-pool2.version}</version>
560568
</dependency>
569+
<dependency>
570+
<groupId>org.apache.commons</groupId>
571+
<artifactId>commons-lang3</artifactId>
572+
<version>${commons-lang3.version}</version>
573+
</dependency>
561574
<dependency>
562575
<groupId>io.dropwizard.metrics</groupId>
563576
<artifactId>metrics-core</artifactId>

0 commit comments

Comments
 (0)