summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt8
1 files changed, 7 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index e88b5a90..4cccc499 100644
--- a/build.sbt
+++ b/build.sbt
@@ -14,7 +14,13 @@ val sharedSettings = Seq(
Seq("#!/usr/bin/env sh", """exec java -jar -Xmx500m -XX:+UseG1GC $JAVA_OPTS "$0" "$@"""")
)
),
-
+ assembly in Test := {
+ val dest = target.value/"mill"
+ IO.copyFile(assembly.value, dest)
+ import sys.process._
+ Seq("chmod", "+x", dest.getAbsolutePath).!
+ dest
+ },
libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.1.7" % "provided",
scalacOptions += "-P:acyclic:force",
autoCompilerPlugins := true,