aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
diff options
context:
space:
mode:
authorJakob Odersky <jakob@odersky.com>2016-01-24 13:04:15 -0800
committerJakob Odersky <jakob@odersky.com>2016-01-24 13:04:15 -0800
commit22ec7e9927ac62b01a8864eb4dcf506a561355b5 (patch)
treea9518463ab3d1e849088beb05958e336feb5fb09 /project/plugins.sbt
parent5521a9377fa35278e2407ab13b26f86b5ce4eb36 (diff)
downloadakka-serial-22ec7e9927ac62b01a8864eb4dcf506a561355b5.tar.gz
akka-serial-22ec7e9927ac62b01a8864eb4dcf506a561355b5.tar.bz2
akka-serial-22ec7e9927ac62b01a8864eb4dcf506a561355b5.zip
Use release plugin
Diffstat (limited to 'project/plugins.sbt')
-rw-r--r--project/plugins.sbt22
1 files changed, 22 insertions, 0 deletions
diff --git a/project/plugins.sbt b/project/plugins.sbt
index edd4ad3..4262019 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -1,7 +1,29 @@
+/*
+ * Main plugins
+ */
+
+// Build, package and load native libraries
addSbtPlugin("ch.jodersky" %% "sbt-jni" % "0.3.0")
+
+/*
+ * Utility plugins, can be disabled during plain build
+ */
+
+// Generate documentation for all sources
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")
+// Build website
addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.8.2")
+// Integrate website with GitHub pages
addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")
+
+// Automate release process
+addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.0")
+
+// Usually a global plugin, made explicit to work with release automation
+addSbtPlugin("com.jsuereth" % "sbt-pgp" % "1.0.0")
+
+// Usually a global plugin, made explicit to work with release automation
+addSbtPlugin("me.lessis" % "bintray-sbt" % "0.3.0")