Scalaはバージョン2.10.2で、SBTは、私はScalaのユニットテストコードのセットアップSCCTにしようとしています0.13.0SBTとSCCTが....モジュールが見つかりません:REAKTOR#1 SBT-SCCT; 0.2-SNAPSHOT
ですカバレッジ私は
seq(ScctPlugin.instrumentSettings : _*)
、プロジェクトに追加/ plugins.sbt私は
....のようなエラーが出resolvers += Classpaths.typesafeResolver
resolvers += "scct-github-repository" at "http://mtkopone.github.com/scct/maven-repo"
addSbtPlugin("reaktor" %% "sbt-scct" % "0.2-SNAPSHOT")
を追加build.sbt におけるので
module not found: reaktor#sbt-scct;0.2-SNAPSHOT
最後のメッセージは、私がhttp://mtkopone.github.io/scct/maven-repo/reaktor/ に見える
[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)
であると私は、例えば不足している必要があるように見えるものを見ます私は参照してください
sbt-scct_2.9.2_0.13/
scct_2.10/
and a bunch of others but no ... sbt-scct_2.10_0.13
お手伝いができますか?あなたはplugins.sbtファイルにaddSbtPlugin("com.github.scct" %% "sbt-scct" % "0.2")
とMavenの中央からのリリースバージョンを取得することができ、結果としてhttps://github.com/SCCT/scct
:(Iは、SBTの初心者です)
多くのおかげで...働きました。 http://mtkopone.github.io/scct/がこの情報へのリンクを持っていたと思うと助かります。 – k1eran