Skip to content

Instantly share code, notes, and snippets.

@huntc
Created March 28, 2014 01:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save huntc/9822808 to your computer and use it in GitHub Desktop.
Save huntc/9822808 to your computer and use it in GitHub Desktop.
(function(sbt) {
var playScala = require("playScala");
var playKeys = playScala.keys;
return sbt.project.in(sbt.cwd)
.addPlugins(playScala);
.addSettings({
"name": "test-jshint",
"version": "1.0-SNAPSHOT",
"libraryDependencies": [
playKeys.jdbc,
playKeys.anorm,
playKeys.cache,
playKeys.ws
]
})
);
})(undefined);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment