I'd like to use the advanced mapping mode of spring-data-neo4j in my Scala SBT project (hosted on github):
I can store Nodes in the database with the repository, but I cannot make the aspectj-weaving work.
This is what I have so…
I'm using sbt-aspectj plugin with Play Framework 2.1.5.
When I hit refresh, all resources including javascript files are not reloaded automatically -- I need to restart the server in order to get the expected result.
It seems that I'm missing…
Background: I've got a Play 2.0 project, and I am trying to add something to do aspectj weaving using aspects in a jar on some of my classes (Java). (sbt-aspectj doesn't seem to do it, or I can't see how). So I need to add a custom task, and have…
I'm trying to build a hello world example of using AspectJ pointcuts in Scala using the sbt-aspectj plugin. In my plugins.sbt I've added the plugin:
addSbtPlugin("com.typesafe.sbt" % "sbt-aspectj" % "0.10.2")
and in my build.sbt, I've set it up as…
I am using Intellij IDEA Community Edition 14.0.3 for Scala development. I am having AspectJ in my application. I am using sbt-aspect v0.10.1.
I am able to run everything fine when I run the application from SBT console. However, when I use run…
I'm attempting to use the sbt-aspectj plugin with the sbt native packager and am running into an issue where the associated -javaagent path to the aspectj load time weaver jar references an ivy cache location rather than something packaged.
That is,…
I am in the process of writing a library that does monitoring/OpenTracing and I am attempting to use sbt-aspectj so that users of the library don't need to manually instrument their code. I am currently however getting an issue with creating an…
I'm trying to configure a play application to use Kamon. I've created a new play application using
activator new kamon-play play-scala
Then I posted it on github. I'm running on OS X 10.11.1 and I'm running JDK 1.8.0_65-b17 and the project is…
I am having an application in scala. I need to use AOP for one of the functionality. I used the plugin sbt-aspectj . Everything is working fine when I run using the sbt console. However, I am not able to make it work when using the executable jar. I…
I am trying to add aspectJ plugin to sbt to use kamon with my akka/scala application. But I am not able to configure the aspectJ plugin correctly. Every time I am running the project I am getting this error "AspectJWeaverMissing". I have made below…