Skip to content

Commit e09cf41

Browse files
authored
Create README.md
1 parent 67b9781 commit e09cf41

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

README.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
[![](https://jitpack.io/v/sethijatin/cucumber-jrc-maven-plugin.svg)](https://jitpack.io/#sethijatin/cucumber-jrc-maven-plugin)
2+
3+
# Cucumber JSON Reports Compiler Plugin
4+
5+
This plugin can be used to compile multiple JSON reports into a single JSON report. It makes sure that if a feature is spread across multiple physical feature files, then all the scenarios are combined under one head.
6+
7+
## How to include it in POM
8+
9+
```java
10+
11+
<pluginRepositories>
12+
<pluginRepository>
13+
<id>jitpack.io</id>
14+
<url>https://jitpack.io</url>
15+
</pluginRepository>
16+
</pluginRepositories>
17+
18+
<plugin>
19+
<groupId>com.github.sethijatin</groupId>
20+
<artifactId>cucumber-jrc-maven-plugin</artifactId>
21+
<version>1.0</version>
22+
<executions>
23+
<execution>
24+
<goals>
25+
<goal>compile-report</goal>
26+
</goals>
27+
</execution>
28+
</executions>
29+
<configuration>
30+
<readJsonReportsFromFolder>src/test/JsonReports</readJsonReportsFromFolder> <!-- Change path as per project need -->
31+
<writeCompiledReportsToFolder>src/test/JsonReportsCompiled</writeCompiledReportsToFolder> <!-- Change path as per project need -->
32+
</configuration>
33+
</plugin>
34+
```

0 commit comments

Comments
 (0)