Given the following SBT files:
$cat shapeless_sandbox/build.sbt
name := "shapeless sandbox"
scalaVersion := "2.11.5"
libraryDependencies ++= Seq(
"com.chuusai" %% "shapeless" % "2.1.0-RC1"
)
resolvers ++= Seq(
Resolver.sonatypeRepo("releases"),
Resolver.sonatypeRepo("snapshots")
)
// Fork JVM when `run`-ing SBT
// http://stackoverflow.com/a/5265162/409976
fork in run := true
And the SBT version:
$cat shapeless_sandbox/project/build.properties
sbt.version=0.13.7
Running sbt
, update
, and then console
, I can't run the examples from the Feature Overview.
scala> import poly._
<console>:7: error: not found: value poly
import poly._
^
What am I missing?