Skip to content

Commit

Permalink
ars-cloud compatibility with aut and Java 11 (#510)
Browse files Browse the repository at this point in the history
* Exclude servlet-api from the Hadoop dependency tree.

* Add Scala version requirement to README.
  • Loading branch information
ruebot authored Jan 27, 2021
1 parent 22c4017 commit f82b443
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ The following two articles provide an overview of the project:

- Java 11
- Python 3.7.3+ (PySpark)
- Scala 2.12+
- Apache Spark 3.0.0+

More information on setting up dependencies can be found [here](https://aut.docs.archivesunleashed.org/docs/next/dependencies).
Expand Down
12 changes: 12 additions & 0 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -433,11 +433,23 @@
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-mapreduce-client-core</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.hadoop</groupId>
<artifactId>hadoop-common</artifactId>
<version>${hadoop.version}</version>
<exclusions>
<exclusion>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
Expand Down

0 comments on commit f82b443

Please sign in to comment.