Skip to content

Commit

Permalink
HPCC4J-662 Upgrade out of date Spark dependencies
Browse files Browse the repository at this point in the history
- Added overrides for outdated dependencies

Signed-off-by: James McMullan [email protected]
  • Loading branch information
jpmcmu committed Nov 5, 2024
1 parent b290014 commit 93eda81
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions DataAccess/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@
<scala.version>2.11</scala.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<javadoc.excludePackageNames>net.razorvine.*:org.apache.*:org.hpccsystems.commons.*:org.hpccsystems.generated.*:org.hpccsystems.dfs.*:org.hpccsystems.ws.*:org.hpccsystems.ws.client.antlr.*</javadoc.excludePackageNames>
<commons-io.version>2.14.0</commons-io.version>
<xalan.version>2.7.3</xalan.version>
<commons-fileupload.version>1.5</commons-fileupload.version>
</properties>
<scm>
<connection>scm:git:https://github.com/hpcc-systems/Spark-HPCC.git</connection>
Expand Down Expand Up @@ -154,6 +157,28 @@
<version>4.13</version>
<scope>provided</scope>
</dependency>
<!-- Out-dated dependency overrides -->
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>${commons-io.version}</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>${xalan.version}</version>
</dependency>
<dependency>
<groupId>commons-fileupload</groupId>
<artifactId>commons-fileupload</artifactId>
<version>${commons-fileupload.version}</version>
</dependency>
<dependency>
<groupId>xalan</groupId>
<artifactId>serializer</artifactId>
<version>${xalan.version}</version>
</dependency>
<!-- End Out-dated dependency overrides -->
</dependencies>
<build>
<pluginManagement>
Expand Down

0 comments on commit 93eda81

Please sign in to comment.