Last active
April 24, 2017 21:55
-
-
Save pedrofurla/bf956d719e8acf0b089dc747d1852e1d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sbt.version=0.13.13 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
lazy val commonSettings = Seq( | |
organization := "com.example", | |
version := "0.1.0", | |
scalaVersion := "2.11.8", | |
libraryDependencies ++= Seq( | |
"com.storm-enroute" %% "scalameter" % "0.8.2" % "test" | |
) | |
) | |
lazy val root = (project in file(".")) | |
.settings(commonSettings: _*) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addSbtPlugin("io.get-coursier" % "sbt-coursier" % "1.0.0-RC1") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment