gh-yzou commented on code in PR #1190:
URL: https://github.com/apache/polaris/pull/1190#discussion_r2001644367


##########
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:
   sorry, i didn't push the change since it is not working, here is what i did 
in polaris/settings.gradle.kts
   ```
   if (gradle.parent == null) {
     val sparkScala = 
loadProperties(file("plugins/spark/spark-scala.properties"))
     val scalaVersions = sparkScala["scalaVersions"].toString().split(",").map {
       it.trim()
     }
   
     for (scalaVersion in scalaVersions) {
       val artifactId = "polaris-spark-3.5_${scalaVersion}"
       polarisProject(artifactId, 
file("plugins/spark")).buildFileName="build.gradle.kts"
     }
   }
   ```
   
   when I run ./gradlew assemble, I run into the above error. I am wondering if 
you have seen the above error and how to resolve the error?



-- 
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...@polaris.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to