2017-03-24 7 views
0

私はScala 2.10.8から2.11.7へ、そしてAkka 2.1.2から2.3.14へ移行しました。私は* .sbtとソースについても多くの変更を行いました。今、私はいくつかの問題を抱えています。私はオンラインでチェックしますが、実際の原因はありませんでした。私は噴霧版はAkka版のスイートではないと思う。しかし、どのバージョンのSprayをAkka 2.3.14に使用しなければならないのですが、私はまだオンライン上の情報を取得していませんでした。値の型LoggingAdapterにアクセスできませんでした。

問題は次のとおりです。

https://www.dropbox.com/s/tp1ruackt9tued6/dependencyTree2.txt?dl=0

答えて

0

あなたはスプレーを使用する必要がある場合は、あなたが使用することアッカの最新バージョンは2.2.xのがようである:

[error] missing or invalid dependency detected while loading class file 'LoggingContext.class'. 
[error] Could not access type LoggingAdapter in value akka.event, 
[error] because it (or its dependencies) are missing. Check your build definition for 
[error] missing or conflicting dependencies. (Re-run with `-Ylog-classpath` to see the problematic classpath.) 
[error] A full rebuild may help if 'LoggingContext.class' was compiled against an incompatible version of akka.event. 

マイプロジェクトの依存関係がこれですin their documentationが表示されます。

新しいバージョンのAkkaを使用する必要がある場合は、Akka HTTPを使用して、migration guideに従わなければなりません。

関連する問題