aboutsummaryrefslogtreecommitdiff
path: root/project/plugins.sbt
blob: 581c6bf4bd365edf009c860bcdc16351a765c3ee (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
/*
 * Additional resolvers
 */

resolvers += Resolver.jcenterRepo

/*
 * Main plugins (required for building)
 */

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

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

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


/*
 * Utility or meta plugins (non-essential, can be disabled)
 */

// 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("se.marcuslonnberg" % "sbt-docker" % "1.4.0")

addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.14.3")