aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
blob: d7ba33ed4fcc1e90f4523ff183b8a93ed0d85e80 (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
31
32
33
34
35
36
37
38
39
40
41
42
43
/*
 * Additional resolvers
 */

resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releases/"

resolvers += "jgit-repo" at "http://download.eclipse.org/jgit/maven"


/*
 * Main plugins
 */

// play web framework
//addSbtPlugin("com.typesafe.play" % "sbt-plugin" % "2.4.6")

// add support for scalajs
addSbtPlugin("org.scala-js" % "sbt-scalajs" % "0.6.6")

// twirl html templating
addSbtPlugin("com.typesafe.sbt" % "sbt-twirl" % "1.1.1")

// enable "smooth" dependencies between play and scalajs projects
//addSbtPlugin("com.vmunier" % "sbt-play-scalajs" % "0.2.3")

// generate MAVLink protocol bindings
addSbtPlugin("com.github.jodersky" % "sbt-mavlink" % "0.5.2")


/*
 * Utility or meta plugins
 */

// automate publishing documentation
//addSbtPlugin("com.typesafe.sbt" % "sbt-site" % "0.8.2")

// publish to github pages
//addSbtPlugin("com.typesafe.sbt" % "sbt-ghpages" % "0.5.4")

// generate documentation for all projects
//addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.3.3")

addSbtPlugin("com.typesafe.sbt" % "sbt-native-packager" % "1.0.0")