Hi David,
thanks for the quick answer.
I have updated my plugins.sbt file according to the sbt-assembly getting started instructions, now it looks like:
resolvers += Resolver.url("artifactory", url("
http://scalasbt.artifactoryonline.com/scalasbt/sbt-plugin-releases"))(Resolver.ivyStylePatterns)
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "0.7.2")
libraryDependencies ++= Seq(
"org.jacoco" % "org.jacoco.core" % "0.5.6.201201232323" artifacts(Artifact("org.jacoco.core", "jar", "jar")),
"org.jacoco" % "org.jacoco.report" % "0.5.6.201201232323" artifacts(Artifact("org.jacoco.report", "jar", "jar")))
addSbtPlugin("de.johoop" % "jacoco4sbt" % "1.2.2")
scalacOptions in Global += "-deprecation"
I have created a build.sbt in the project root directory (besides the sbt script ) with:
import AssemblyKeys._
jarName in assembly := "breeze.jar"
name := "breeze"
version := "1.0"
If I run assembly in the sbt command line I get an error stating:
[error] Not a valid command: assembly
[error] Not a valid project ID: assembly
[error] Not a valid configuration: assembly
[error] Not a valid key: assembly
[error] assembly
[error] ^
Any hints maybe?
D