summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-03-25 09:39:26 -0700
committerLi Haoyi <haoyi.sg@gmail.com>2018-03-25 12:12:57 -0700
commitb648ca4d49a77592ac306122d03b7a54e75c2d55 (patch)
tree9105b519cbca7c93dc23289156ec1b4c60352c7e /build.sc
parentbdb82a92c4340898b43525dbad44990a119d2b0f (diff)
downloadmill-b648ca4d49a77592ac306122d03b7a54e75c2d55.tar.gz
mill-b648ca4d49a77592ac306122d03b7a54e75c2d55.tar.bz2
mill-b648ca4d49a77592ac306122d03b7a54e75c2d55.zip
bump upickle, ammonite versions
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc9
1 files changed, 5 insertions, 4 deletions
diff --git a/build.sc b/build.sc
index 5b7f82ce..71f60f03 100755
--- a/build.sc
+++ b/build.sc
@@ -57,6 +57,9 @@ trait MillModule extends MillPublishModule{ outer =>
val test = new Tests(implicitly)
class Tests(ctx0: mill.define.Ctx) extends mill.Module()(ctx0) with super.Tests{
+ def repositories = super.repositories ++ Seq(
+ MavenRepository("https://oss.sonatype.org/content/repositories/releases")
+ )
def forkArgs = T{ testArgs() }
def moduleDeps =
if (this == main.test) Seq(main)
@@ -69,8 +72,7 @@ trait MillModule extends MillPublishModule{ outer =>
object clientserver extends MillModule{
def ivyDeps = Agg(
- ivy"com.lihaoyi:::ammonite:1.0.5-14-daf7e0d",
- ivy"com.lihaoyi::upickle:0.6.0-RC6",
+ ivy"com.lihaoyi:::ammonite:1.0.5-22-16b9cde",
ivy"org.scala-sbt.ipcsocket:ipcsocket:1.0.0"
)
val test = new Tests(implicitly)
@@ -85,8 +87,7 @@ object core extends MillModule {
def ivyDeps = Agg(
ivy"com.lihaoyi::sourcecode:0.1.4",
- ivy"com.lihaoyi:::ammonite:1.0.5-14-daf7e0d",
- ivy"com.lihaoyi::upickle:0.6.0-RC6",
+ ivy"com.lihaoyi:::ammonite:1.0.5-22-16b9cde",
ivy"jline:jline:2.14.5"
)