aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-05-02 05:19:07 -0700
committerJakob Odersky <jakob@odersky.com>2016-05-11 11:17:09 -0700
commit791cb363b77332e3abdf4039102dfcdb863ce6c3 (patch)
tree09ff5d807a1407abedade57b692204ceac3f3280 /project/plugins.sbt
parent49563ee13599b0cb1add27b24446677a13b1f563 (diff)
downloadsbt-jni-791cb363b77332e3abdf4039102dfcdb863ce6c3.tar.gz
sbt-jni-791cb363b77332e3abdf4039102dfcdb863ce6c3.tar.bz2
sbt-jni-791cb363b77332e3abdf4039102dfcdb863ce6c3.zip
Use macro annotation to load native library
This also removes the need for third projects to depend on a "loader library".
Diffstat (limited to 'project/plugins.sbt')
-rw-r--r--project/plugins.sbt9
1 files changed, 7 insertions, 2 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index 391c9ab..19a16f4 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,3 +1,8 @@
-addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")
-
+// cross-compile subprojects with differing scala versions
addSbtPlugin("com.eed3si9n" % "sbt-doge" % "0.1.5")
+
+// testing for sbt plugins
+libraryDependencies += "org.scala-sbt" % "scripted-plugin" % sbtVersion.value
+
+// formatting
+addSbtPlugin("org.scalariform" % "sbt-scalariform" % "1.6.0")