snuyanzin commented on code in PR #4895:
URL: https://github.com/apache/calcite/pull/4895#discussion_r3107428817
##########
spark/build.gradle.kts:
##########
@@ -14,10 +14,19 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
+configurations.all {
+ resolutionStrategy.eachDependency {
+ if (requested.group == "org.apache.hadoop") {
+ // minimum hadoop version working on jdk 24+
+ useVersion("3.4.3")
+ }
+ }
+}
Review Comment:
even 3.5.8 spark brings hadoop which still uses SecurityManager, so forcibly
use 3.4.3 where it was removed
--
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]