scala はバージョン 2.10.2、sbt は 0.13.0 です。
scala 単体テスト コード カバレッジ用に scct をセットアップしようとしているので、build.sbt に追加しました
seq(ScctPlugin.instrumentSettings : _*)
そして project/plugins.sbt に追加しました
resolvers += Classpaths.typesafeResolver
resolvers += "scct-github-repository" at "http://mtkopone.github.com/scct/maven-repo"
addSbtPlugin("reaktor" %% "sbt-scct" % "0.2-SNAPSHOT")
...のようなエラーが発生します。
module not found: reaktor#sbt-scct;0.2-SNAPSHOT
最後のメッセージは
[warn] ==== scct-github-repository: tried
[warn] http://mtkopone.github.com/scct/maven-repo/reaktor/sbt-scct_2.10_0.13/0.2-SNAPSHOT/sbt-scct-0.2-SNAPSHOT.pom
[info] Resolving org.fusesource.jansi#jansi;1.4 ...
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: UNRESOLVED DEPENDENCIES ::
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn] :: reaktor#sbt-scct;0.2-SNAPSHOT: not found
[warn] ::::::::::::::::::::::::::::::::::::::::::::::
[warn]
[warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested attributes.
[warn] reaktor:sbt-scct:0.2-SNAPSHOT (sbtVersion=0.13, scalaVersion=2.10)
http://mtkopone.github.io/scct/maven-repo/reaktor/を見る と、必要と思われるものが欠落していることがわかります。
sbt-scct_2.9.2_0.13/
scct_2.10/
and a bunch of others but no ... sbt-scct_2.10_0.13
手伝ってくれますか ?(私は sbt 初心者です)