Hello, I have this configuration inside of my aggregate module
<build>
<plugins>
<plugin>
<groupId>io.qameta.allure</groupId>
<artifactId>allure-maven</artifactId>
<executions>
<execution>
<id>allure-aggregate</id>
<goals>
<goal>aggregate</goal>
</goals>
<phase>test</phase>
</execution>
</executions>
<configuration>
<reportVersion>2.30.0</reportVersion>
<resultsDirectory>allure-results</resultsDirectory>
<installDirectory>${rootDir}/.allure</installDirectory>
</configuration>
</plugin>
</plugins>
</build>
For some reason, this plugin is just skipped with message provided in the screenshot, there are no additional information even when using -X flag. Any idea what could be causing this or how can i further debug it