uschindler commented on code in PR #3285: URL: https://github.com/apache/solr/pull/3285#discussion_r2010620931
########## solr/modules/cross-dc/build.gradle: ########## @@ -24,7 +24,7 @@ description = 'Cross-DC Replication Plugins' ext { // Use of the security manager is not supported on windows. // Mockito does not work with it enabled. - useSecurityManager = !Os.isFamily(Os.FAMILY_WINDOWS) + useSecurityManager = rootProject.ext.runtimeJavaVersion <= JavaVersion.VERSION_23 && !Os.isFamily(Os.FAMILY_WINDOWS) Review Comment: Ah this needs to be done differently. I would do the `&` trick here: https://github.com/apache/solr/blob/de09232c53a18a0391d7386fea21a2aaae03af66/gradle/testing/randomization.gradle#L207 Uwe -- 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: issues-unsubscr...@solr.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@solr.apache.org For additional commands, e-mail: issues-h...@solr.apache.org