allure-docs icon indicating copy to clipboard operation
allure-docs copied to clipboard

[FAQ] OOM after adding assertJ

Open baev opened this issue 8 years ago • 0 comments

Probable you have a huge classpath. To solve the problem configure weaver to process only classes with steps/attachments.

add META-INF/aop-ajc.xml to classpath with the following content

<aspectj>
 <weaver options="">
  <include within="your.base.package.*" />
 </weaver>
</aspectj>

baev avatar Mar 12 '17 09:03 baev