summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--build.sbt4
-rwxr-xr-xbuild.sc4
-rw-r--r--scalaplugin/src/main/scala/mill/scalaplugin/ScalaModule.scala4
3 files changed, 6 insertions, 6 deletions
diff --git a/build.sbt b/build.sbt
index 31d7eedd..5d541651 100644
--- a/build.sbt
+++ b/build.sbt
@@ -44,7 +44,7 @@ lazy val core = project
"com.lihaoyi" %% "sourcecode" % "0.1.4",
"com.lihaoyi" %% "pprint" % "0.5.3",
"com.lihaoyi" % "ammonite" % "1.0.3" cross CrossVersion.full,
- "org.scala-sbt" %% "zinc" % "1.0.3",
+ "org.scala-sbt" %% "zinc" % "1.0.5",
"org.scala-sbt" % "test-interface" % "1.0"
)
)
@@ -54,4 +54,4 @@ lazy val scalaplugin = project
.settings(
sharedSettings,
name := "mill-scalaplugin"
- ) \ No newline at end of file
+ )
diff --git a/build.sc b/build.sc
index b3f636b0..902b9cde 100755
--- a/build.sc
+++ b/build.sc
@@ -23,7 +23,7 @@ object Core extends MillModule {
Dep("com.lihaoyi", "pprint", "0.5.3"),
Dep.Point("com.lihaoyi", "ammonite", "1.0.3"),
Dep("com.typesafe.play", "play-json", "2.6.6"),
- Dep("org.scala-sbt", "zinc", "1.0.3"),
+ Dep("org.scala-sbt", "zinc", "1.0.5"),
Dep.Java("org.scala-sbt", "test-interface", "1.0")
)
@@ -52,4 +52,4 @@ object ScalaPlugin extends MillModule {
override def prependShellScript =
"#!/usr/bin/env sh\n" +
"exec java -cp \"$0\" mill.scalaplugin.Main \"$@\""
-} \ No newline at end of file
+}
diff --git a/scalaplugin/src/main/scala/mill/scalaplugin/ScalaModule.scala b/scalaplugin/src/main/scala/mill/scalaplugin/ScalaModule.scala
index f42a3055..53c98be1 100644
--- a/scalaplugin/src/main/scala/mill/scalaplugin/ScalaModule.scala
+++ b/scalaplugin/src/main/scala/mill/scalaplugin/ScalaModule.scala
@@ -52,7 +52,7 @@ object ScalaModule{
)
val scalac = ZincUtil.scalaCompiler(
scalaInstance,
- grepJar(s"compiler-bridge_$binaryScalaVersion-1.0.3.jar")
+ grepJar(s"compiler-bridge_$binaryScalaVersion-1.0.5.jar")
)
mkdir(outputPath)
@@ -150,7 +150,7 @@ object ScalaModule{
}
def scalaCompilerIvyDeps(scalaVersion: String) = Seq(
Dep.Java("org.scala-lang", "scala-compiler", scalaVersion),
- Dep("org.scala-sbt", s"compiler-bridge", "1.0.3")
+ Dep("org.scala-sbt", "compiler-bridge", "1.0.5")
)
def scalaRuntimeIvyDeps(scalaVersion: String) = Seq[Dep](
Dep.Java("org.scala-lang", "scala-library", scalaVersion)