File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
modules/integration/src/test/scala/scala/cli/integration Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -163,7 +163,7 @@ Here's some of the more important external projects used by Scala CLI:
163
163
stripped up of its benchmark infrastructure and build integrations.
164
164
- [ no-crc32-zip-input-stream] ( https://github.com/scala-cli/no-crc32-zip-input-stream ) : A copy of ` ZipInputStream `
165
165
from OpenJDK, with CRC32 calculations disabled.
166
- - [ lightweight-spark-distrib] ( https://github.com/scala-cli /lightweight-spark-distrib ) : a small application allowing
166
+ - [ lightweight-spark-distrib] ( https://github.com/VirtusLab /lightweight-spark-distrib ) : a small application allowing
167
167
to make Spark distributions more lightweight.
168
168
- [ java-class-name] ( https://github.com/scala-cli/java-class-name ) : a small library to extract class names
169
169
from Java sources.
Original file line number Diff line number Diff line change @@ -9,15 +9,15 @@ import scala.util.Properties
9
9
10
10
object SparkTestDefinitions {
11
11
12
- def lightweightSparkDistribVersionOpt = Option (" 0.0.4 " )
12
+ def lightweightSparkDistribVersionOpt : Option [ String ] = Option (" 0.0.5 " )
13
13
14
14
final class Spark (val sparkVersion : String , val scalaVersion : String ) {
15
15
private def sbv = scalaVersion.split('.' ).take(2 ).mkString(" ." )
16
16
private var toDeleteOpt = Option .empty[os.Path ]
17
17
lazy val sparkHome : os.Path = {
18
18
val url = lightweightSparkDistribVersionOpt match {
19
19
case Some (lightweightSparkDistribVersion) =>
20
- s " https://github.com/scala-cli /lightweight-spark-distrib/releases/download/v $lightweightSparkDistribVersion/spark- $sparkVersion-bin-hadoop2.7-scala $sbv.tgz "
20
+ s " https://github.com/VirtusLab /lightweight-spark-distrib/releases/download/v $lightweightSparkDistribVersion/spark- $sparkVersion-bin-hadoop2.7-scala $sbv.tgz "
21
21
case None =>
22
22
// original URL (too heavyweight, often fails / times out…)
23
23
s " https://archive.apache.org/dist/spark/spark- $sparkVersion/spark- $sparkVersion-bin-hadoop2.7.tgz "
You can’t perform that action at this time.
0 commit comments