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
The following code prints [] when running on sbt-kanela-runner 2.1.0:
[]
sbt-kanela-runner
package foo import java.lang.management.ManagementFactory object Foo { def main(args: Array[String]): Unit = { val bean = ManagementFactory.getRuntimeMXBean() println(bean.getInputArguments) } }
build.sbt:
build.sbt
lazy val root = (project in file(".")) .settings( name := "runner-issue", organization := "com.example", version := "1.0-SNAPSHOT", crossScalaVersions := Seq("2.13.14"), libraryDependencies ++= Seq( "io.kamon" %% "kamon-bundle" % "2.7.3", ), (run / fork) := true, )
When run on 2.0.14 instead, it correctly prints:
[-javaagent:<repo path>/io/kamon/kanela-agent/1.0.11/kanela-agent-1.0.11.jar]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The following code prints
[]
when running onsbt-kanela-runner
2.1.0:build.sbt
:When run on 2.0.14 instead, it correctly prints:
The text was updated successfully, but these errors were encountered: