We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, when using the plugin, and try to set up java options in run it is not propagated.
run / javaOptions += "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9999", fork in run := true
The text was updated successfully, but these errors were encountered:
Yes - I have the same problem. It works when you specify your javaOptions globally:
javaOptions
javaOptions += "-agentlib:jdwp=transport=dt_socket,server=y,suspend=n,address=9999", fork in run := true
After looking into the code the possible culprit could be: https://github.com/kamon-io/sbt-aspectj-runner/blob/master/sbt-aspectj-runner/src/main/scala/kamon/aspectj/sbt/SbtAspectJRunner.scala#L73
runJVMOptions = (javaOptions.value ++ aspectjRunnerJvmForkOptions.value).toVector,
The javaOptions key is not scoped so the default (unscoped) value is resolved.
Sorry, something went wrong.
No branches or pull requests
Hello, when using the plugin, and try to set up java options in run it is not propagated.
The text was updated successfully, but these errors were encountered: