A simple debugger library for Scala. Tested on OpenJDK 7 for Windows and Linux.
Hosted on Maven Central and can be installed via the following:
libraryDependencies += "org.scala-debugger" %% "scala-debugger-api" % "1.0.0"
You also need to install the sbt plugin to make the Java Debugger Interface jar (tools.jar) available on your classpath when you are compiling and testing:
addSbtPlugin("org.scala-debugger" % "sbt-jdi-tools" % "1.0.0")
From the root of the project:
sbt compile
Make sure that you have sbt-extras
installed as it will pick up memory and compiler options from .jvmopts
.
From the root of the project:
sbt test
Note: Roughly 2.5 GB of RAM is needed to compile the unit tests.
From the root of the project:
sbt it:test
The Scala debugger API is licensed under Apache 2.0.