summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbuild.sc5
-rw-r--r--main/src/mill/main/MainModule.scala2
2 files changed, 3 insertions, 4 deletions
diff --git a/build.sc b/build.sc
index 71f60f03..a5d898e3 100755
--- a/build.sc
+++ b/build.sc
@@ -72,7 +72,7 @@ trait MillModule extends MillPublishModule{ outer =>
object clientserver extends MillModule{
def ivyDeps = Agg(
- ivy"com.lihaoyi:::ammonite:1.0.5-22-16b9cde",
+ ivy"com.lihaoyi:::ammonite:1.1.0",
ivy"org.scala-sbt.ipcsocket:ipcsocket:1.0.0"
)
val test = new Tests(implicitly)
@@ -87,8 +87,7 @@ object core extends MillModule {
def ivyDeps = Agg(
ivy"com.lihaoyi::sourcecode:0.1.4",
- ivy"com.lihaoyi:::ammonite:1.0.5-22-16b9cde",
- ivy"jline:jline:2.14.5"
+ ivy"com.lihaoyi:::ammonite:1.1.0",
)
def generatedSources = T {
diff --git a/main/src/mill/main/MainModule.scala b/main/src/mill/main/MainModule.scala
index 4b0a4354..7c84f74a 100644
--- a/main/src/mill/main/MainModule.scala
+++ b/main/src/mill/main/MainModule.scala
@@ -169,7 +169,7 @@ trait MainModule extends mill.Module{
multiSelect = false
) {res =>
for(json <- res.flatMap(_._2)){
- println(json)
+ println(json.render(indent = 4))
}
}
}