Commit f2fee748 by Dave Syer

Excludes aspectjrt from javanica

The aspectjweaver jar includes all of aspectjrt, and the former is used at runtime in a number of places (tests fail if you remove it). Both are not needed so we have picked one (the other one than recommended in gh-666). Fixes gh-666
parent 1090f281
......@@ -376,6 +376,10 @@
<groupId>com.google.code.findbugs</groupId>
<artifactId>annotations</artifactId>
</exclusion>
<exclusion>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
......
......@@ -210,13 +210,8 @@
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<scope>test</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment