The AI2 SBT plugins are intended to minimize build boilerplate accross projects. It is recommended to only enable "Archetype" plugins, which currently include:
CliPlugin
- for command line applications using the scopt library.LibraryPlugin
- for libraries to be released / published using ourAi2ReleasePlugin
WebServicePlugin
- for web service applications built on spray, akka, and spray-jsonWebappPlugin
(docs) - for web applications that have a service layer and a Node.js built web client.
It is fine to enable more than one plugin, including more than one archetype plugin. However, if we find the need to do so it could be an indicator that we have a new archetype to define.
All plugins also enable the CoreSettings
plugin (docs), which contains AI2-wide common settings. In particular, this enables the StylePlugin
(docs) to help with code formatting & style.
More documentation for individual plugins can be found in the docs directory.
Add the following to your project's project/plugins.sbt
:
addSbtPlugin("org.allenai.plugins" % "allenai-sbt-plugins" % VERSION)
where VERSION
is the current release version (see our bintray repo to find available versions).
Our archetype plugins are AutoPlugin
s. To enable an archetype plugin for a project, do the following:
If you have a root build.sbt
// in build.sbt
val service = project.in(file("service")).enablePlugins(WebServicePlugin)
If you have a project/Build.scala instead of a root build.sbt
import org.allenai.plugins.archetypes._
import sbt.Build
object ProjBuild extends Build {
lazy val service = project.in(file("service")).enablePlugins(WebServicePlugin)
}
Currently, all plugins are defined in the same SBT project. New plugins should be created in:
-
src/main/scala/org/allenai/plugins
if they are to be part of core settings or if they are a mixin plugin (in other words not an Archetype plugin). -
src/main/scala/org/allenai/plugins/archetypes
if they are to be a project Archetype plugin
Each plugin should have its own test-[plugin]
project in the test-projects/
directory, which are separate SBT projects using the plugin under test. These projects are meant for rapid feedback while making changes to the plugins, and not necessarily as a template for how to use the plugins.
Following the Typesafe lead, we publish our plugins to a bintray.
Bintray does not like snapshot versions, so all of our published versions are releases.
To publish new versions you will need a ~/.bintray/.credentials
file with the following contents. Be sure to chmod 600
it!
You can also use a personal Bintray login that has access to the allenai
organization.
realm = Bintray API Realm
host = api.bintray.com
user = ai2-dev [or your bintray username]
password = [API Key for ai2-dev user ]
Where [API Key]
is the API key for the ai2-dev account (or your account if using personal account) on Bintray. You can find it by asking someone! There is a username & password combo that might work to log in to the account as well.
- Log into bintray as
ai2-dev
- Click on the
ai2-dev
account name in top-right corner - Click on
Edit
underai2-dev
- Click on
API Key
in navigation list
- Checkout the
master
branch of the repository - Make sure the upstream-tracking branch is
master
@ allenai/sbt-plugins
$ git branch --set-upstream-to=upstream/master
- Cut the release:
$ sbt release
The plugin will set the appropriate defaults so just hit <ENTER>
through the prompts. Also, some errors will be logged when the plugin creates a tag and pushes it to the upstream repository. This is not really an error but git outputting some text to stderr.
To verify your release, look for the new version in our bintray repo and also for the tag in the github repository