dongjoon-hyun closed pull request #23502: [SPARK-22128][CORE][BUILD] Add `paranamer` dependency to `core` module URL: https://github.com/apache/spark/pull/23502
This is a PR merged from a forked repository. As GitHub hides the original diff on merge, it is displayed below for the sake of provenance: As this is a foreign pull request (from a fork), the diff is supplied below (as it won't show otherwise due to GitHub magic): diff --git a/core/pom.xml b/core/pom.xml index 49b1a54e32598..1cd1ad9725d7c 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -33,6 +33,10 @@ <name>Spark Project Core</name> <url>http://spark.apache.org/</url> <dependencies> + <dependency> + <groupId>com.thoughtworks.paranamer</groupId> + <artifactId>paranamer</artifactId> + </dependency> <dependency> <groupId>org.apache.avro</groupId> <artifactId>avro</artifactId> diff --git a/pom.xml b/pom.xml index 245344a826935..de14d6add84ea 100644 --- a/pom.xml +++ b/pom.xml @@ -1949,6 +1949,7 @@ <groupId>com.thoughtworks.paranamer</groupId> <artifactId>paranamer</artifactId> <version>${paranamer.version}</version> + <scope>runtime</scope> </dependency> <dependency> <groupId>org.apache.arrow</groupId> ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
