gh-yzou commented on code in PR #1190: URL: https://github.com/apache/polaris/pull/1190#discussion_r2000287009
########## gradle.properties: ########## @@ -28,3 +28,5 @@ org.gradle.configuration-cache=false #org.gradle.configuration-cache-problems=warn # bump the Gradle daemon heap size (you can set bigger heap sizes as well) org.gradle.jvmargs=-Xms2g -Xmx4g -XX:MaxMetaspaceSize=768m +# default scala version used for spark plugin build +systemProp.defaultScalaVersion=2.12 Review Comment: @snazy thanks for the suggestion. I tried to do similar thing as nessie, where I tries to register a project with different name like this https://github.com/projectnessie/nessie/blob/main/settings.gradle.kts#L192. However, i keep on running into the dependency problems like ``` Task ':polaris-spark-3.5_2.12:jar' uses this output of task ':polaris-spark-3.5_2.13:processResources' without declaring an explicit or implicit dependency. ``` where there seems tasks in project for scala 2.12 depends on tasks for project with scala 2.13, wondering if you know how to resolve such issue? -- 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]
