aboutsummaryrefslogtreecommitdiff
path: root/project/AspectJ.scala
diff options
context:
space:
mode:
authorIvan Topolnjak <ivantopo@gmail.com>2013-10-29 08:41:14 -0300
committerIvan Topolnjak <ivantopo@gmail.com>2013-10-29 08:41:14 -0300
commitab40e0e7f35f97390d180b49d556ee36aac4af18 (patch)
tree5cd1cb5199aad87205b630b4203791b4ef0905b0 /project/AspectJ.scala
parent491277a8e30353d5e4ed7e381ab2f5aba4e6f420 (diff)
downloadKamon-ab40e0e7f35f97390d180b49d556ee36aac4af18.tar.gz
Kamon-ab40e0e7f35f97390d180b49d556ee36aac4af18.tar.bz2
Kamon-ab40e0e7f35f97390d180b49d556ee36aac4af18.zip
reorganization of projects
Diffstat (limited to 'project/AspectJ.scala')
-rw-r--r--project/AspectJ.scala14
1 files changed, 4 insertions, 10 deletions
diff --git a/project/AspectJ.scala b/project/AspectJ.scala
index b6c5037a..a1cc27e0 100644
--- a/project/AspectJ.scala
+++ b/project/AspectJ.scala
@@ -7,15 +7,9 @@ import com.typesafe.sbt.SbtAspectj.AspectjKeys.{ binaries, compileOnly, inputs,
object AspectJ {
lazy val aspectJSettings = aspectjSettings ++ Seq(
- compileOnly in Aspectj := true,
- fork in Test := true,
- javaOptions in Test <++= weaverOptions in Aspectj,
- fork in run := true,
- javaOptions in run <++= weaverOptions in Aspectj,
-
- lintProperties in Aspectj += "invalidAbsoluteTypeName = ignore"
-
- // Add this line if we need to include some .aj aspects again in the project.
- // products in Compile <<= products in Aspectj
+ compileOnly in Aspectj := true,
+ fork in (Test, run) := true,
+ javaOptions in (Test, run) <++= weaverOptions in Aspectj,
+ lintProperties in Aspectj += "invalidAbsoluteTypeName = ignore"
)
} \ No newline at end of file