Play 2.1-SNAPSHOTベースのアプリケーションがローカルで正常に実行されていますが、Herokuにデプロイしようとすると、次のエラーが発生します。
[warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: UNRESOLVED DEPENDENCIES :: [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] :: play#sbt-plugin;2.1-SNAPSHOT: not found [warn] :::::::::::::::::::::::::::::::::::::::::::::: [warn] [warn] Note: Some unresolved dependencies have extra attributes. Check that these dependencies exist with the requested
属性。
私のplugins.sbtファイルは、2.1-SNAPSHOT依存関係を含むローカルリポジトリを指しています。
resolvers ++= Seq(
"Typesafe repository" at "http://repo.typesafe.com/typesafe/releases/",
Resolver.file("My Repository", file( "repository/local") )
)
// Use the Play sbt plugin for Play projects
addSbtPlugin("play" % "sbt-plugin" % "2.1-SNAPSHOT")
ディレクトリ「repository/local」が私のGITリポジトリにチェックインされています。「UnresolvedDependency」エラーが発生する前に次の警告が表示されたため、HerokuのSBTがローカルリポジトリを検索しているように見えます。
[warn] ==== Typesafe repository: tried [warn] http://repo.typesafe.com/typesafe/releases/play/sbt-plugin_2.9.1_0.11.2/2.1-SNAPSHOT/sbt-plugin-2.1-SNAPSHOT.pom [warn] ==== My Repository: tried [warn] ==== heroku-sbt-typesafe: tried [warn] ==== heroku-central: tried
コマンド「playstage」のローカルでの実行は正常に終了します。