Nayana-ibm commented on PR #3261: URL: https://github.com/apache/solr/pull/3261#issuecomment-2760709267
> @Nayana-ibm do you know enough Gradle to know why @malliaridis 's first attempt didn't work? I'm always trying to learn more Gradle. `def withUiModule = !rootProject.hasProperty('disableUiModule') || rootProject.findProperty('disableUiModule') != 'true' ` The condition checks whether the disableUiModule property exists in the root project. However, since this property is not present, the check !rootProject.hasProperty('disableUiModule') always returns true. As a result, withUiModule always evaluates to true, no matter what value we try to pass. We have added `withUiModule `to ext to have access throughout the build. -- 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