OpenLiberty / liberty-tools-eclipse

Eclipse Public License 2.0
13 stars 9 forks source link

View test reports broken by change in surefire test report location #518

Closed scottkurz closed 2 months ago

scottkurz commented 2 months ago

See: https://github.com/OpenLiberty/liberty-tools-intellij/issues/934

(Note the issue: https://github.com/OpenLiberty/liberty-tools-eclipse/issues/67 which suggests we handle any configured location)

scottkurz commented 2 months ago

Note a workaround would be to configure an older version of the reporting plugin, e.g.:

    <pluginManagement>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-surefire-report-plugin</artifactId>
                <version>3.2.5</version>
            </plugin>
        </plugins>
    </pluginManagement>

It may also be possible to use the new plugin with some non-default, explicit configuration, e.g. possibly using <reporting>.

awisniew90 commented 2 months ago

Fixed in PR https://github.com/OpenLiberty/liberty-tools-eclipse/pull/519