我正在使用 scala 2.10、sbt 0.12.2 和 Spring。
我想用 SBT 启用 Spring-AspectJ 编译时编织。我知道一个很棒的 Maven 插件可以做到这一点:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<configuration>
<complianceLevel>1.6</complianceLevel>
<aspectLibraries>
<aspectLibrary>
<groupId>org.springframework</groupId>
<artifactId>spring-aspects</artifactId>
</aspectLibrary>
</aspectLibraries>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
</goals>
</execution>
</executions>
</plugin>
SBT 方面是否存在做同样事情的有效方法?