Skip to content

Commit

Permalink
Merge pull request #1670 from scottmarlow/Persistence_addsurefirerepo…
Browse files Browse the repository at this point in the history
…rtplugin

add maven-surefire-report-plugin to glassfish-runner/persistence-platform-tck
  • Loading branch information
scottmarlow authored Nov 21, 2024
2 parents a5dad14 + 589c190 commit 33bd801
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions glassfish-runner/persistence-platform-tck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,12 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.2.5</version>
</dependency>

</dependencies>
</dependencyManagement>

Expand Down Expand Up @@ -602,6 +608,26 @@
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-report-plugin</artifactId>
<configuration>
<linkXRef>false</linkXRef>
</configuration>
<executions>
<execution>
<id>generate-failsafe-html-report</id>
<goals>
<goal>failsafe-report-only</goal>
</goals>
<phase>post-integration-test</phase>
<configuration>
<outputDirectory>${project.build.directory}/test-reports</outputDirectory>
</configuration>
</execution>
</executions>
</plugin>

</plugins>
</build>

Expand Down

0 comments on commit 33bd801

Please sign in to comment.