Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@
<commons-configuration.version>1.10</commons-configuration.version>
<commons-exec.version>1.1</commons-exec.version>
<commons-io.version>2.16.1</commons-io.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<commons-math3.version>3.6.1</commons-math3.version>
<commons-dbcp2.version>2.12.0</commons-dbcp2.version>
<commons-text.version>1.10.0</commons-text.version>
Expand Down Expand Up @@ -749,6 +749,11 @@
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
</dependency>
<dependency>
<groupId>org.apache.curator</groupId>
<artifactId>curator-client</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion standalone-metastore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
<apache-directory-server.version>2.0.0-M24</apache-directory-server.version>
<checkstyle.version>11.1.0</checkstyle.version>
<commons-collections4.version>4.4</commons-collections4.version>
<commons-lang3.version>3.14.0</commons-lang3.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<commons-dbcp2.version>2.12.0</commons-dbcp2.version>
<datasketches.version>2.0.0</datasketches.version>
<datanucleus-api-jdo.version>6.0.3</datanucleus-api-jdo.version>
Expand Down
7 changes: 7 additions & 0 deletions storage-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
<inceptionYear>2008</inceptionYear>
<properties>
<checkstyle.version>11.1.0</checkstyle.version>
<commons-lang3.version>3.20.0</commons-lang3.version>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
<netty.version>4.1.127.Final</netty.version>
Expand Down Expand Up @@ -59,6 +60,12 @@
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>${commons-lang3.version}</version>
<scope>provided</scope>
</dependency>
Comment on lines +63 to +68
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why are you adding a dependency in scope of upgrading one?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

commons-lang3 of version 3.17.0 was brought in transitively via hadoop so adding it in dependency management to ensure only newer version should be present as storage-api do not define hive pom as parent and has parent

<parent>
    <groupId>org.apache</groupId>
    <artifactId>apache</artifactId>
    <version>35</version>
  </parent>

<!-- compile inter-project -->
<dependency>
<groupId>org.apache.hadoop</groupId>
Expand Down