Skip to content

Commit 4c14e49

Browse files
committed
prepare release 1.2.0
1 parent dc533a5 commit 4c14e49

File tree

15 files changed

+158
-323
lines changed

15 files changed

+158
-323
lines changed

config/extent.properties

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# spark-reporter
2+
extent.reporter.spark.start=true
3+
extent.reporter.spark.config=
4+
extent.reporter.spark.out=test-output/SparkReport/Index.html
5+
6+
# klov-reporter
7+
extent.reporter.klov.start=false
8+
extent.reporter.klov.config=src/test/resources/klov.properties
9+
10+
# json-reporter
11+
extent.reporter.json.start=false
12+
extent.reporter.json.out=test-output/JsonReport/Extent.json

config/klov.properties

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
mongodb.host=localhost
2+
mongodb.port=27017
3+
mongodb.uri=
4+
klov.host=http://localhost
5+
klov.port=80
6+
klov.project.name=cucumber4
7+
klov.report.name=examples

config/spark-config.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"theme": "STANDARD",
3+
"encoding": "utf-8",
4+
"protocol": "HTTPS",
5+
"timelineEnabled": false,
6+
"offlineMode": true,
7+
"documentTitle": "ExtentReports",
8+
"reportName": "ExtentReports",
9+
"timeStampFormat": "MMM dd, yyyy HH:mm:ss a",
10+
"js": "",
11+
"css": ""
12+
}

config/spark-config.xml

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<extentreports>
3+
<configuration>
4+
5+
<!-- report theme -->
6+
<!-- STANDARD, DARK -->
7+
<theme>STANDARD</theme>
8+
9+
<!-- document encoding -->
10+
<!-- defaults to UTF-8 -->
11+
<encoding>UTF-8</encoding>
12+
13+
<!-- protocol for script and stylesheets -->
14+
<!-- defaults to https -->
15+
<!-- HTTP, HTTPS -->
16+
<protocol>HTTPS</protocol>
17+
18+
<!-- offline report -->
19+
<timelineEnabled>true</timelineEnabled>
20+
21+
<!-- offline report -->
22+
<enableOfflineMode>false</enableOfflineMode>
23+
24+
<!-- title of the document -->
25+
<documentTitle>Extent Framework</documentTitle>
26+
27+
<!-- report name - displayed at top-nav -->
28+
<reportName>Build 1</reportName>
29+
30+
<!-- timestamp format -->
31+
<timeStampFormat>MMM dd, yyyy HH:mm:ss</timeStampFormat>
32+
33+
<!-- custom javascript -->
34+
<scripts>
35+
<![CDATA[
36+
$(document).ready(function() {
37+
38+
});
39+
]]>
40+
</scripts>
41+
42+
<!-- custom styles -->
43+
<styles>
44+
<![CDATA[
45+
46+
]]>
47+
</styles>
48+
49+
</configuration>
50+
</extentreports>

pom.xml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,12 @@
4242
<dependency>
4343
<groupId>com.aventstack</groupId>
4444
<artifactId>extentreports</artifactId>
45-
<version>5.0.0-SNAPSHOT</version>
45+
<version>5.0.0</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>com.aventstack</groupId>
49+
<artifactId>klov-reporter</artifactId>
50+
<version>5.0.0</version>
4651
</dependency>
4752
<dependency>
4853
<groupId>org.mongodb</groupId>
@@ -163,5 +168,4 @@
163168
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
164169
</repository>
165170
</distributionManagement>
166-
167171
</project>

src/test/resources/com/aventstack/adapter/avent-config.xml

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/test/resources/com/aventstack/adapter/bdd-config.xml

Lines changed: 0 additions & 48 deletions
This file was deleted.

src/test/resources/com/aventstack/adapter/cards-config.xml

Lines changed: 0 additions & 48 deletions
This file was deleted.
Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
# spark-reporter
12
extent.reporter.spark.start=true
23
extent.reporter.spark.config=
3-
extent.reporter.spark.out=test-output/ExtentSpark/Index.html
4+
extent.reporter.spark.out=test-output/SparkReport/Index.html
5+
6+
# klov-reporter
7+
extent.reporter.klov.start=false
8+
extent.reporter.klov.config=src/test/resources/klov.properties
9+
10+
# json-reporter
11+
extent.reporter.json.start=false
12+
extent.reporter.json.out=test-output/JsonReport/Extent.json

src/test/resources/com/aventstack/adapter/html-config.xml

Lines changed: 0 additions & 41 deletions
This file was deleted.

0 commit comments

Comments
 (0)