Skip to content

Commit

Permalink
docs(sbt) : add help to activate debug mode for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
mvillafuertem committed Mar 22, 2024
1 parent e0d766f commit 3e3c201
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -450,5 +450,8 @@ def welcomeMessage: Def.Setting[String] = onLoadMessage := {
|${cmd("dependencyBrowseTree", "- It opens a browser window, but it displays a visualization of the dependency tree")}
|${cmd("""set javaOptions += "-Dconfig.file=../../local-application.conf"""", "- Set javaOptions values")}
|${cmd("show javaOptions", "- Show javaOptions values")}
|${cmd("show javaOptions", "- Show javaOptions values")}
|${cmd("""javaOptions in Test ++= Seq("-agentlib:jdwp=transport=dt_socket,server=y,suspend=y,address=5005")""".stripMargin, "- Active debug mode")}
|${cmd("sbt -jvm-debug 5005".stripMargin, "- Active mode debug")}
""".stripMargin
}

0 comments on commit 3e3c201

Please sign in to comment.