Skip to content

Commit 29c4806

Browse files
Switch to coursier 1.0.0-RC1
1 parent 0a87e5b commit 29c4806

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

project/Deps.scala

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ object Deps {
1717
def ammoniumRuntime = ("org.jupyter-scala" % "ammonite-runtime" % Versions.ammonium).cross(CrossVersion.full)
1818
def asm = "org.ow2.asm" % "asm-all" % "5.0.4"
1919
def caseApp = "com.github.alexarchambault" %% "case-app" % "1.1.3"
20-
def coursierCli = "io.get-coursier" %% "coursier-cli" % "1.0.0-M14-9"
20+
def coursierCli = "io.get-coursier" %% "coursier-cli" % "1.0.0-RC1"
2121
def flinkClients = "org.apache.flink" %% "flink-clients" % Versions.flink
2222
def flinkRuntime = "org.apache.flink" %% "flink-runtime" % Versions.flink
2323
def flinkScala = "org.apache.flink" %% "flink-scala" % Versions.flink

spark/core/src/main/scala/jupyter/spark/internals/Spark.scala

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ object Spark {
4141
exclude = exclusions.toList,
4242
profile = profiles.toList,
4343
checksum = List("SHA-1") // should not be required with coursier > 1.0.0-M14-9
44-
)
44+
),
45+
artifactTypes = Set("jar", "bundle")
4546
) match {
4647
case Left(err) =>
4748
throw new Exception(err)

0 commit comments

Comments
 (0)