Community Plugins¶
sbt Organization¶
The sbt organization is available for use by any sbt plugin. Developers who contribute their plugins into the community organization will still retain control over their repository and its access. The goal of the sbt organization is to organize sbt software into one central location.
A side benefit to using the sbt organization for projects is that you can use gh-pages to host websites in the http://scala-sbt.org domain.
Community Ivy Repository¶
Typesafe, Inc. has provided a freely available Ivy Repository for sbt projects to use. If you would like to publish your project to this Ivy repository, first contact sbt-repo-admins and request privileges (we have to verify code ownership, rights to publish, etc.). After which, you can deploy your plugins using the following configuration:
publishTo := Some(Resolver.url("sbt-plugin-releases", new URL("http://repo.scala-sbt.org/scalasbt/sbt-plugin-releases/"))(Resolver.ivyStylePatterns))
publishMavenStyle := false
You'll also need to add your credentials somewhere. For example, you might use a ~/.sbt/sbtpluginpublish.sbt file:
credentials += Credentials("Artifactory Realm",
"repo.scala-sbt.org", "@user name@", "@my encrypted password@")
Where @my encrypted password@ is actually obtained using the following instructions.
Note: Your code must abide by the repository polices.
To automatically deploy snapshot/release versions of your plugin use the following configuration:
publishTo <<= (version) { version: String =>
val scalasbt = "http://repo.scala-sbt.org/scalasbt/"
val (name, url) = if (version.contains("-SNAPSHOT"))
("sbt-plugin-snapshots", scalasbt+"sbt-plugin-snapshots")
else
("sbt-plugin-releases", scalasbt+"sbt-plugin-releases")
Some(Resolver.url(name, new URL(url))(Resolver.ivyStylePatterns))
}
Note: ivy repositories currently don't support Maven-style snapshots.
Available Plugins¶
Please feel free to submit a pull request that adds your plugin to the list.
Plugins for IDEs:¶
- IntelliJ IDEA
- sbt Plugin to generate IDEA project configuration: https://github.com/mpeltonen/sbt-idea
- IDEA Plugin to embed an sbt Console into the IDE: https://github.com/orfjackal/idea-sbt-plugin
- Netbeans: https://github.com/remeniuk/sbt-netbeans-plugin
- Eclipse: https://github.com/typesafehub/sbteclipse
- Sublime Text: https://github.com/orrsella/sbt-sublime
Web Plugins¶
- xsbt-web-plugin: https://github.com/JamesEarlDouglas/xsbt-web-plugin
- xsbt-webstart: https://github.com/ritschwumm/xsbt-webstart
- sbt-appengine: https://github.com/sbt/sbt-appengine
- sbt-gwt-plugin: https://github.com/thunderklaus/sbt-gwt-plugin
- sbt-cloudbees-plugin: https://github.com/timperrett/sbt-cloudbees-plugin
- sbt-jelastic-deploy: https://github.com/casualjim/sbt-jelastic-deploy
Test plugins¶
- junit_xml_listener: https://github.com/ijuma/junit_xml_listener
- sbt-growl-plugin: https://github.com/softprops/sbt-growl-plugin
- sbt-teamcity-test-reporting-plugin: https://github.com/guardian/sbt-teamcity-test-reporting-plugin
- xsbt-cucumber-plugin: https://github.com/skipoleschris/xsbt-cucumber-plugin
- sbt-multi-jvm: https://github.com/typesafehub/sbt-multi-jvm
- schoir (Distributed testing plugin): https://github.com/typesafehub/schoir
Static Code Analysis plugins¶
- cpd4sbt: https://bitbucket.org/jmhofer/cpd4sbt (copy/paste detection, works for Scala, too)
- findbugs4sbt: https://bitbucket.org/jmhofer/findbugs4sbt (FindBugs only supports Java projects atm)
- scalastyle: https://github.com/scalastyle/scalastyle-sbt-plugin (Scalastyle - static code checker for Scala)
- sbt-stats: https://github.com/orrsella/sbt-stats (simple, extensible source code statistics)
One jar plugins¶
- sbt-assembly: https://github.com/sbt/sbt-assembly
- xsbt-proguard-plugin: https://github.com/adamw/xsbt-proguard-plugin
- sbt-deploy: https://github.com/reaktor/sbt-deploy
- sbt-appbundle (os x standalone): https://github.com/sbt/sbt-appbundle
- sbt-onejar (Packages your project using One-JAR™): https://github.com/sbt/sbt-onejar
Frontend development plugins¶
- coffeescripted-sbt: https://github.com/softprops/coffeescripted-sbt
- less-sbt (for less-1.3.0): https://github.com/softprops/less-sbt
- sbt-less-plugin (it uses less-1.3.0): https://github.com/btd/sbt-less-plugin
- sbt-emberjs: https://github.com/stefri/sbt-emberjs
- sbt-closure: https://github.com/eltimn/sbt-closure
- sbt-yui-compressor: https://github.com/indrajitr/sbt-yui-compressor
- sbt-requirejs: https://github.com/scalatra/sbt-requirejs
LWJGL (Light Weight Java Game Library) Plugin¶
- sbt-lwjgl-plugin: https://github.com/philcali/sbt-lwjgl-plugin
Release plugins¶
- sbt-aether-plugin (Published artifacts using Sonatype Aether): https://github.com/arktekk/sbt-aether-deploy
- posterous-sbt: https://github.com/n8han/posterous-sbt
- sbt-signer-plugin: https://github.com/rossabaker/sbt-signer-plugin
- sbt-izpack (generates IzPack an installer): http://software.clapper.org/sbt-izpack/
- sbt-ghpages-plugin (publishes generated site and api): https://github.com/jsuereth/xsbt-ghpages-plugin
- sbt-pgp (PGP signing plugin, can generate keys too): https://github.com/sbt/sbt-pgp
- sbt-release (customizable release process): https://github.com/sbt/sbt-release
- sbt-unique-version (emulates unique snapshots): https://github.com/sbt/sbt-unique-version
- sbt-pack (generates packages with dependent jars and launch scripts): https://github.com/xerial/sbt-pack
- sbt-start-script: https://github.com/sbt/sbt-start-script
- sbt-native-packager: https://github.com/sbt/sbt-native-packager
System plugins¶
- sbt-sh (executes shell commands): https://github.com/steppenwells/sbt-sh
- cronish-sbt (interval sbt / shell command execution): https://github.com/philcali/cronish-sbt
- git (executes git commands): https://github.com/sbt/sbt-git
- svn (execute svn commands): https://github.com/xuwei-k/sbtsvn
- sbt-groll (sbt plugin to navigate the Git history): https://github.com/sbt/sbt-groll
- sbt-twt (twitter processor for sbt): https://github.com/sbt/sbt-twt
Code generator plugins¶
- sbt-scalabuff (Google Protocol Buffers with native scala suppport thru ScalaBuff): https://github.com/sbt/sbt-scalabuff
- sbt-fmpp (FreeMarker Scala/Java Templating): https://github.com/sbt/sbt-fmpp
- sbt-scalaxb (XSD and WSDL binding): https://github.com/eed3si9n/scalaxb
- sbt-protobuf (Google Protocol Buffers): https://github.com/sbt/sbt-protobuf
- sbt-avro (Apache Avro): https://github.com/cavorite/sbt-avro
- sbt-xjc (XSD binding, using JAXB XJC): https://github.com/sbt/sbt-xjc
- xsbt-scalate-generate (Generate/Precompile Scalate Templates): https://github.com/backchatio/xsbt-scalate-generate
- sbt-antlr (Generate Java source code based on ANTLR3 grammars): https://github.com/stefri/sbt-antlr
- xsbt-reflect (Generate Scala source code for project name and version): https://github.com/ritschwumm/xsbt-reflect
- sbt-buildinfo (Generate Scala source for any settings): https://github.com/sbt/sbt-buildinfo
- lifty (Brings scaffolding to sbt): https://github.com/lifty/lifty
- sbt-thrift (Thrift Code Generation): https://github.com/bigtoast/sbt-thrift
- xsbt-hginfo (Generate Scala source code for Mercurial repository information): https://bitbucket.org/lukas_pustina/xsbt-hginfo
- sbt-scalashim (Generate Scala shim like sys.error): https://github.com/sbt/sbt-scalashim
- sbtend (Generate Java source code from xtend ): https://github.com/xuwei-k/sbtend
- sbt-boilerplate (generating scala.Tuple/Function related boilerplate code): https://github.com/sbt/sbt-boilerplate
- sbt-fxml (Generates controller classes for JavaFX FXML files): https://bitbucket.org/phdoerfler/sbt-fxml
Database plugins¶
- sbt-liquibase (Liquibase RDBMS database migrations): https://github.com/bigtoast/sbt-liquibase
- sbt-dbdeploy (dbdeploy, a database change management tool): https://github.com/mr-ken/sbt-dbdeploy
Documentation plugins¶
- sbt-lwm (Convert lightweight markup files, e.g., Markdown and Textile, to HTML): http://software.clapper.org/sbt-lwm/
- sbt-site (Site generation for SBT): https://github.com/sbt/sbt-site
Utility plugins¶
- jot (Write down your ideas lest you forget them) https://github.com/softprops/jot
- ls-sbt (An sbt interface for ls.implicit.ly): https://github.com/softprops/ls
- np (Dead simple new project directory generation): https://github.com/softprops/np
- sbt-editsource (A poor man's sed(1), for sbt): http://software.clapper.org/sbt-editsource/
- sbt-dirty-money (Cleans Ivy2 cache): https://github.com/sbt/sbt-dirty-money
- sbt-dependency-graph (Creates a graphml file of the dependency tree): https://github.com/jrudolph/sbt-dependency-graph
- sbt-cross-building (Simplifies building your plugins for multiple versions of sbt): https://github.com/jrudolph/sbt-cross-building
- sbt-inspectr (Displays settings dependency tree): https://github.com/eed3si9n/sbt-inspectr
- sbt-revolver (Triggered restart, hot reloading): https://github.com/spray/sbt-revolver
- sbt-scalaedit (Open and upgrade ScalaEdit (text editor)): https://github.com/kjellwinblad/sbt-scalaedit-plugin
- sbt-man (Looks up scaladoc): https://github.com/sbt/sbt-man
- sbt-taglist (Looks for TODO-tags in the sources): https://github.com/johanandren/sbt-taglist
- migration-manager: https://github.com/typesafehub/migration-manager
- sbt-scalariform (adding support for source code formatting using Scalariform): https://github.com/sbt/sbt-scalariform
- sbt-aspectj: https://github.com/sbt/sbt-aspectj
- sbt-properties: https://github.com/sbt/sbt-properties
- sbt-multi-publish (publish to more than one repository simultaneously): https://github.com/davidharcombe/sbt-multi-publish
- sbt-about-plugins (shows some details about plugins loaded): https://github.com/jozic/sbt-about-plugins
Code coverage plugins¶
- sbt-scct: https://github.com/dvc94ch/sbt-scct
- jacoco4sbt: https://bitbucket.org/jmhofer/jacoco4sbt
- xsbt-coveralls-plugin: https://github.com/theon/xsbt-coveralls-plugin
Android plugin¶
- android-plugin: https://github.com/jberkel/android-plugin
- android-sdk-plugin: https://github.com/pfn/android-sdk-plugin
Build interoperability plugins¶
OSGi plugin¶
Plugin bundles¶
- tl-os-sbt-plugins (Version, Release, and Package Management, Play 2.0 and Git utilities) : https://github.com/trafficland/tl-os-sbt-plugins
Contents
- Community Plugins
- sbt Organization
- Community Ivy Repository
- Available Plugins
- Plugins for IDEs:
- Web Plugins
- Test plugins
- Static Code Analysis plugins
- One jar plugins
- Frontend development plugins
- LWJGL (Light Weight Java Game Library) Plugin
- Release plugins
- System plugins
- Code generator plugins
- Database plugins
- Documentation plugins
- Utility plugins
- Code coverage plugins
- Android plugin
- Build interoperability plugins
- OSGi plugin
- Plugin bundles