summaryrefslogtreecommitdiff
path: root/build.sbt
diff options
context:
space:
mode:
Diffstat (limited to 'build.sbt')
-rw-r--r--build.sbt7
1 files changed, 6 insertions, 1 deletions
diff --git a/build.sbt b/build.sbt
index ea2db92e..cb233365 100644
--- a/build.sbt
+++ b/build.sbt
@@ -13,7 +13,12 @@ val sharedSettings = Seq(
// G1 Garbage Collector is awesome https://github.com/lihaoyi/Ammonite/issues/216
Seq("#!/usr/bin/env sh", """exec java -jar -Xmx500m -XX:+UseG1GC $JAVA_OPTS "$0" "$@"""")
)
- )
+ ),
+
+ libraryDependencies += "com.lihaoyi" %% "acyclic" % "0.1.7" % "provided",
+ scalacOptions += "-P:acyclic:force",
+ autoCompilerPlugins := true,
+ addCompilerPlugin("com.lihaoyi" %% "acyclic" % "0.1.7")
)
lazy val core = project