verizon / sbt-rig   5.0.39

Apache License 2.0 GitHub

Common build and release steps for SBT projects

Scala versions: 2.12 2.10
sbt plugins: 1.0 0.13

sbt-rig

sbt-rig

Build Status Maven Central

This plugin does all the rigging and fiddly bits and bobs that the typical open source user wants when releasing software. The following assumptions are made:

  1. You want to do continuous integration and release, and you'll be using travis-ci.org to do this.
  2. You'll be releasing to oss.sonatype.org, and that you already claimed your top-level profile name in Maven Central. See the Sonatype docs for more.

Usage

Before looking over the items below, you might find it useful to read this article which explains the rationale of sbt-rig, and common setup instructions for users.

In your project/plugins.sbt:

addSbtPlugin("io.verizon.build" % "sbt-rig" % "3.0.+")

That's all you need to do. The plugin itself makes use of SBT auto-plugins, so you never need to explicitly enable it for the common functionality sbt-rig provides. There are a set of optional modules (see below) that you can explicitly enable for extra functionality.

Publishing to Central

If you want to publish to Maven Central (this plugin assumes you do), then the first thing you need to do is configure PGP signing. Under the hood the sbt-rig plugin makes use of sbt-pgp, so please read the docs for that, and once you have a ring setup, and your GPG ring passphrase is available to SBT (this usually lives in ~/.sbt/0.13/gpg.sbt), set the following settings in project/CentralRequirementsPlugin.scala:

import sbt._, Keys._
import xerial.sbt.Sonatype.autoImport.sonatypeProfileName

object CentralRequirementsPlugin extends AutoPlugin {
  // tells sbt to automatically enable this plugin where ever
  // the sbt-rig plugin is enabled (which should be all sub-modules)
  override def trigger = allRequirements

  override def requires = verizon.build.RigPlugin

  override lazy val projectSettings = Seq(
    // this tells sonatype what profile to use
    // (usually this is what you registered when you signed up
    // for maven central release via their OSS JIRA ticket process)
    sonatypeProfileName := "com.yourdomain",
    // inform central who was explicitly involved in developing
    // this project. Note that this is *required* by central.
    developers += Developer("timperrett", "Timothy Perrett", "", url("http://github.com/timperrett")),
    // what license are you releasing this under?
    licenses := Seq("Apache-2.0" -> url("https://www.apache.org/licenses/LICENSE-2.0.html")),
    // where can users find information about this project?
    homepage := Some(url("http://verizon.github.io/quiver/")),
    // show users where the source code is located
    scmInfo := Some(ScmInfo(url("https://github.com/yourorg/yourproj"),
                                "[email protected]:yourorg/yourproj.git"))
  )
}

These values enable your build to meet the Maven Central requirements for publishing. All artifacts must be signed using your registered GPG keyring.

Reporting Code Coverage

By default, when building on Travis sbt-rig will conduct two passes of compilation: one with code coverage enabled (making use of scoverage) and another without instrumentation so that the byte code in the output JARs is free of any scoverage plumbing. In order to report on this code coverage, all you need to do is add the following to your .travis.yml:

after_success:
  - "bash <(curl -s https://codecov.io/bash) -r $TRAVIS_REPO_SLUG -t $CODECOV_TOKEN"

This assumes that you have fetched your codecov report token and encrypted it into your .travis.yml. This is usually done on the command line inside your project, something like this:

travis encrypt --add CODECOV_TOKEN=XXXXXXXXXXXX

That's it. Codecov.io will now display the code coverage reports for you, and comment on your pull requests with deltas in coverage values.

Disabling Code Coverage

Sometimes you might have modules that you simply do not want code coverage reporting enabled on, and in this case you can simply add the following setting to that particular build.sbt:

coverageEnabled := false

By default, the plugin detects if the build is running on Travis CI and enables the coverage during the first compilation pass, and disables it on the second pass.

If you find yourself having problems with the coverage implementation (this sometimes happens) then be sure to read the scoverage troubleshooting guide.

Optional Plugins

In addition, the following plugins are provided by sbt-rig, but are not explicitly enabled by default. These are optional, and you might never use them.

key description
enablePlugins(ScalaCheckPlugin) Add support for a compatible version of ScalaCheck to your test scope.
enablePlugins(ScalaTestPlugin) Add support for a compatible version of ScalaTest to your test scope. Enables ScalaCheckPlugin.
enablePlugins(Specs2Plugin) Add support for a compatible version of ScalaTest to your test scope. Enables Specs2Plugin.
enablePlugins(DisablePublishingPlugin) Disables all the artifact publishing for that particular module - no documentation, no binaries, no pos etc
enablePlugins(MetadataPlugin) Generates a `BuildInfo` source file that your system can use to determine the build version of this system at runtime.
enablePlugins(DocsPlugin) Should only be included in your docs project. Generates your site with tut and Hugo and publishes to GitHub Pages.

Migration notes

v5.0

  • Built for sbt-1.0. Bump sbt.version in project/build.properties to at least 1.0.1.
  • scalacOptions are now set by sbt-tpolecat, a stricter but better set than was available in sbt-rig-4.x. Opt out of disagreeable flags with scalacOptions -= ....
  • Uses sbt-partial-unification. If on Scala 2.10, upgrade to at least Scala 2.10.6. If on Scala 2.11, upgrade to at least Scala 2.11.8.
  • Coverage highlighting is now enabled by default above Scala 2.11.1
  • Unified turnOffCoverage and publishArtifacsWithoutInstrumentation [sic] release steps into publishToSonatypeWithoutInstrumentation. If you did not customize the release steps previously, there is nothing new to do.
  • watchSources customization is removed, as we can no longer filter out the target directory.
  • Theoretically can be used without git if you don't use the DocsPlugin with sbt-ghpages, though I don't know anybody who has tried.