Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
sbt から実行されたテストは、例外が発生したときにスタック トレースを表示しないため、デバッガーから sbt に接続してテストをデバッグしたいと考えています。それを行う簡単な方法は何ですか?
typesafe が提供する sbt deb/rpm を使用すると、次のように動作します。
sbt -jvm-debug 8000
java jdwp argsを使用して別のsbtランチャーを作成できます。つまり、-agentlib:jdwp = Transportation = dt_socket、suspend = y、server = y、address = 10000
ここから、デバッガーをポート10,000に接続できます。