allure-docs
allure-docs copied to clipboard
[FAQ] OOM after adding assertJ
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>