aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
blob: 6e40ce50b53a568a8ab54a3a35df35ae3a79c3fe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*
 * Main plugins
 */

resolvers += "jodersky-maven" at "http://dl.bintray.com/jodersky/maven/"

// Build, package and load native libraries
addSbtPlugin("ch.jodersky" % "sbt-jni" % "0.4.3")

/*
 * 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")