The name of the blog comes from a quote I heard many years ago: "Give me a wrench". "What size?" "It doesn't matter.I am using it as a hammer" This blog is a discussion of software development tools: how to use them, when to use them, how not to use them, when not to use them, the ones I like, the ones I don't like, etc.
Monday, September 3, 2012
More hints that will help with the ABCs of Scala
Add the ability to pull down source with the dependencies with SBT
If you add the EclipseKeys.withSource := true to the build.sbt file.
name := "canon"
version := "1.0"
scalaVersion := "2.9.2"
EclipseKeys.withSource := true
resolvers += "Typesafe Repository" at "http://repo.typesafe.com/typesafe/releases/"
resolvers += "Spray Repository" at "http://repo.spray.cc/"
Scala-IDE will automatically attach source to the dependency which will allow you to debug the cryptic error messages more easily
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment