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
We followed the guides to include aspectj weaver into our non-Play project using
addSbtPlugin("io.kamon" % "sbt-aspectj-runner" % "1.1.2") addSbtPlugin("com.lightbend.sbt" % "sbt-javaagent" % "0.1.4")
and to the build.sbt:
build.sbt
lazy val root = (project in file(".")) .enablePlugins(JavaAppPackaging, JavaAgent) javaAgents += "org.aspectj" % "aspectjweaver" % "1.9.4" javaOptions in Universal += "-Dorg.aspectj.tracing.factory=default"
But a run of sbt dependencyUpdates states that:
sbt dependencyUpdates
[expired ] org.aspectj:aspectjweaver:1.8.10 ---> 1.9.4
I guess it is related to the constant defined here: https://github.com/kamon-io/sbt-aspectj-runner/blob/master/sbt-aspectj-runner/src/main/scala/kamon/aspectj/sbt/SbtAspectJRunner.scala#L28
The text was updated successfully, but these errors were encountered:
1.8.10
No branches or pull requests
We followed the guides to include aspectj weaver into our non-Play project using
and to the
build.sbt
:But a run of
sbt dependencyUpdates
states that:I guess it is related to the constant defined here: https://github.com/kamon-io/sbt-aspectj-runner/blob/master/sbt-aspectj-runner/src/main/scala/kamon/aspectj/sbt/SbtAspectJRunner.scala#L28
The text was updated successfully, but these errors were encountered: