Alexandre Archambault
Alexandre Archambault
**Is your feature request related to a problem? Please describe.** Users can ask for a custom JVM on the command line, like `scala-cli --jvm 11 foo.sc`. Yet there's no corresponding...
Seems the Spark REPL support for Spark Connect relies on Ammonite (https://github.com/apache/spark/pull/40515, https://github.com/apache/spark/pull/40675, https://github.com/apache/spark/pull/40894). [Their initialization code](https://github.com/apache/spark/blob/1c713dbacc5074e7812ba48b4cebf51309e2fb84/connector/connect/client/jvm/src/main/scala/org/apache/spark/sql/application/ConnectRepl.scala#L81-L89) looks pretty straightforward.
This should allow to address issues seen when publishing.
Currently having [issues](https://github.com/alexarchambault/case-app/actions/runs/5319876605/jobs/9632901416) with publishing on the CI. sbt-ci-release and sbt-pgp don't really allow for fine grained customization of gpg-related things (passing custom gpg options, etc.). We should switch the...
Not sure why, but jitpack seems to block indefinitely sometimes: ```text $ cs get https://jitpack.io/com/github/plokhotnyuk/jsoniter-scala/jsoniter-scala-core_3.0.0-M3/2.6.4/jsoniter-scala-core_3.0.0-M3-2.6.4.pom https://jitpack.io/com/github/plokhotnyuk/jsoniter-scala/jsoniter-scala-core_3.… NaN% [ ] 0B (0B / s) ``` (just stays this way indefinitely…)
The `--extra-jars` option of `cs launch` should accept class paths containing wildcards, like [`java -cp` does](https://docs.oracle.com/javase/6/docs/technotes/tools/windows/classpath.html).
Pretty sure we shouldn't need to keep using just LF as line separator on Windows. This complicates new line handling in the tests (in `ScalaKernelTests` in particular). I don't intend...