Skip to content

Commit 12e4ab6

Browse files
authored
Merge pull request #55 from contentstack/test/cs-44061-sanity
added: surefire plugin to produce the test reports
2 parents b6a437f + 51056bc commit 12e4ab6

File tree

2 files changed

+14
-1
lines changed

2 files changed

+14
-1
lines changed

Changelog.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
A brief description of what changes project contains
44

5+
#### v1.2.8
6+
7+
- added surefire plugin to generate test reports
8+
59
## March 24, 2024
610

711
#### v1.2.7

pom.xml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<modelVersion>4.0.0</modelVersion>
55
<groupId>com.contentstack.sdk</groupId>
66
<artifactId>utils</artifactId>
7-
<version>1.2.7</version>
7+
<version>1.2.8</version>
88
<packaging>jar</packaging>
99
<name>Contentstack-utils</name>
1010
<description>Java Utils SDK for Contentstack Content Delivery API, Contentstack is a headless CMS</description>
@@ -141,6 +141,15 @@
141141
</execution>
142142
</executions>
143143
</plugin>
144+
<plugin>
145+
<groupId>org.apache.maven.plugins</groupId>
146+
<artifactId>maven-surefire-plugin</artifactId>
147+
<version>3.0.0-M5</version>
148+
<configuration>
149+
<reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
150+
<testFailureIgnore>true</testFailureIgnore>
151+
</configuration>
152+
</plugin>
144153
<plugin>
145154
<groupId>org.apache.maven.plugins</groupId>
146155
<artifactId>maven-surefire-report-plugin</artifactId>

0 commit comments

Comments
 (0)