LuciferYang commented on PR #38936: URL: https://github.com/apache/spark/pull/38936#issuecomment-1342060398
@steveloughran maven build spark with hadoop 3.4.0-SNAPSHOT failed not related to `scala-maven-plugin`, after add the following 2 test dependencies to `sql/core` as https://github.com/apache/spark/pull/38974 , compilation can succeed ``` <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk15on</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.bouncycastle</groupId> <artifactId>bcpkix-jdk15on</artifactId> <scope>test</scope> </dependency> ``` @steveloughran Is there any change about hadoop 3.4.0 test dependencies? I am not sure why this dependency needs to be added to `sql/core` module now. But according to the description of the `yarn` module, these two dependencies should only be used by `MiniYARNCluster`? -- 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. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
