Skip to content

Instantly share code, notes, and snippets.

@pkmishra
Created January 16, 2013 23:39
Show Gist options
  • Save pkmishra/4552085 to your computer and use it in GitHub Desktop.
Save pkmishra/4552085 to your computer and use it in GitHub Desktop.
sbt-idea to work with scala 2.10.0
import sbt._
import Defaults._
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
libraryDependencies += sbtPluginExtra(
m = "com.github.mpeltonen" % "sbt-idea" % "1.3.0-SNAPSHOT", // Plugin module name and version
sbtV = "0.12", // SBT version
scalaV = "2.9.2" // Scala version compiled the plugin
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment