Skip to content

Instantly share code, notes, and snippets.

@elo7-developer
Created August 13, 2013 19:49
Show Gist options
  • Save elo7-developer/6224953 to your computer and use it in GitHub Desktop.
Save elo7-developer/6224953 to your computer and use it in GitHub Desktop.
Configuring Eclipse scala project with SBT
name := "hello_scala"
version := "1.0"
scalaVersion := "2.10.2"
libraryDependencies ++= Seq(
"org.specs2" %% "specs2" % "2.1.1" % "test",
"junit" % "junit" % "4.11" % "test"
)
resolvers ++= Seq(
"snapshots" at "http://oss.sonatype.org/content/repositories/snapshots",
"releases" at "http://oss.sonatype.org/content/repositories/releases"
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment