#Maven goal skipping without explanation

1 messages · Page 1 of 1 (latest)

marsh cape
#

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

flint ridgeBOT
#

<@&987246554085740594> please have a look, thanks.

lone vector
#

Did you also do the configuration so your test data is gathered?

marsh cape
marsh cape
#

I also noticed it is only skipping when aggregation module is inheriting from parent, when i remove parent from my aggregate module i get another error that "reactorProjects" cannot be null

#

But according to the debug logs before plugin execution, reactorProjects is in fact not null, but contains all submodules