aboutsummaryrefslogtreecommitdiff
path: root/project/AspectJ.scala
blob: 7ba359ebebacd96c421ec8209e8e2647afb3cd78 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import sbt._
import sbt.Keys._
import com.typesafe.sbt.SbtAspectj
import com.typesafe.sbt.SbtAspectj.Aspectj
import com.typesafe.sbt.SbtAspectj.AspectjKeys._


object AspectJ {

  lazy val aspectJSettings = SbtAspectj.aspectjSettings ++ Seq(
           fork in Test   := true,
    javaOptions in Test   <++= weaverOptions in Aspectj
  )
}