dongjoon-hyun opened a new pull request #25783: [SPARK-29007][MLLIB][FOLLOWUP] Remove duplicated dependency URL: https://github.com/apache/spark/pull/25783 ### What changes were proposed in this pull request? This removes the duplicated dependency which is added by [SPARK-29007](https://github.com/dongjoon-hyun/spark/pull/new/SPARK-29007). ### Why are the changes needed? Maven complains this kind of duplications. We had better be safe in the future Maven versions. ``` $ cd mllib $ mvn clean package -DskipTests [INFO] Scanning for projects... [WARNING] [WARNING] Some problems were encountered while building the effective model for org.apache.spark:spark-mllib_2.12:jar:3.0.0-SNAPSHOT [WARNING] 'dependencies.dependency.(groupId:artifactId:type:classifier)' must be unique: org.apache.spark:spark-streaming_${scala.binary.version}:test-jar -> duplicate declaration of version ${project.version} @ line 119, column 17 [WARNING] [WARNING] It is highly recommended to fix these problems because they threaten the stability of your build. [WARNING] [WARNING] For this reason, future Maven versions might no longer support building such malformed projects. [WARNING] ... ``` ### Does this PR introduce any user-facing change? No. ### How was this patch tested? Manual check since this is a warning. ``` $ cd mllib $ mvn clean package -DskipTests ```
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to 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]
