summaryrefslogtreecommitdiff
path: root/build.sc
diff options
context:
space:
mode:
authorLi Haoyi <haoyi.sg@gmail.com>2018-11-18 21:18:13 +0800
committerLi Haoyi <haoyi.sg@gmail.com>2018-11-19 00:45:29 +0800
commitc7385346bc25c636ee46fe6567eafae65249ae1f (patch)
tree8cb087d133ae2889439fe3516b0d90c409b4277b /build.sc
parent10169e0eb217843341bd313374a6a852701b9887 (diff)
downloadmill-c7385346bc25c636ee46fe6567eafae65249ae1f.tar.gz
mill-c7385346bc25c636ee46fe6567eafae65249ae1f.tar.bz2
mill-c7385346bc25c636ee46fe6567eafae65249ae1f.zip
bump Ammonite version0.3.5
Diffstat (limited to 'build.sc')
-rwxr-xr-xbuild.sc5
1 files changed, 2 insertions, 3 deletions
diff --git a/build.sc b/build.sc
index b5072b1b..3e061e04 100755
--- a/build.sc
+++ b/build.sc
@@ -8,7 +8,6 @@ import mill._
import mill.scalalib._
import publish._
import mill.modules.Jvm.createAssembly
-import upickle.Js
trait MillPublishModule extends PublishModule{
def artifactName = "mill-" + super.artifactName()
@@ -88,7 +87,7 @@ object main extends MillModule {
def ivyDeps = Agg(
// Keep synchronized with ammonite in Versions.scala
- ivy"com.lihaoyi:::ammonite:1.4.2",
+ ivy"com.lihaoyi:::ammonite:1.4.4",
// Necessary so we can share the JNA classes throughout the build process
ivy"net.java.dev.jna:jna:4.5.0",
ivy"net.java.dev.jna:jna-platform:4.5.0"
@@ -521,7 +520,7 @@ def uploadToGithub(authKey: String) = T.command{
scalaj.http.Http("https://api.github.com/repos/lihaoyi/mill/releases")
.postData(
ujson.write(
- Js.Obj(
+ ujson.Js.Obj(
"tag_name" -> releaseTag,
"name" -> releaseTag
)