Skip to content

Commit 982a55d

Browse files
committed
prepare release 5.0.3
1 parent c031a49 commit 982a55d

File tree

3 files changed

+360
-300
lines changed

3 files changed

+360
-300
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## [5.0.3](https://github.com/extent-framework/extentreports-java/compare/v5.0.2...v5.0.3)
2+
3+
#### Issues Resolved
4+
- [#232](/issues/232) Display duration for child tests
5+
- [#235](/issues/235) Critical: KlovReporter fails to upload ScreenCapture for events
6+
17
## [5.0.2](https://github.com/extent-framework/extentreports-java/compare/v5.0.1...v5.0.2)
28

39
#### Issues Resolved

pom.xml

Lines changed: 187 additions & 160 deletions
Original file line numberDiff line numberDiff line change
@@ -1,174 +1,201 @@
11
<project xmlns="http://maven.apache.org/POM/4.0.0"
2-
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3-
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
44

5-
<modelVersion>4.0.0</modelVersion>
6-
<groupId>com.aventstack</groupId>
7-
<artifactId>extentreports</artifactId>
8-
<version>5.0.3-SNAPSHOT</version>
5+
<modelVersion>4.0.0</modelVersion>
6+
<groupId>com.aventstack</groupId>
7+
<artifactId>extentreports</artifactId>
8+
<version>5.0.3</version>
99

10-
<name>ExtentReports</name>
11-
<url>www.extentreports.com</url>
12-
<description>ExtentReports library</description>
10+
<name>ExtentReports</name>
11+
<url>www.extentreports.com</url>
12+
<description>ExtentReports library</description>
1313

14-
<scm>
15-
<connection>scm:git:https://github.com/extent-framework/extentreports-java.git</connection>
16-
<developerConnection>scm:git:https://github.com/extent-framework/extentreports-java.git</developerConnection>
17-
<url>https://github.com/extent-framework/extentreports-java</url>
18-
</scm>
14+
<scm>
15+
<connection>scm:git:https://github.com/extent-framework/extentreports-java.git</connection>
16+
<developerConnection>scm:git:https://github.com/extent-framework/extentreports-java.git</developerConnection>
17+
<url>https://github.com/extent-framework/extentreports-java</url>
18+
</scm>
1919

20-
<licenses>
21-
<license>
22-
<name>The Apache Software License, Version 2.0</name>
23-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24-
</license>
25-
</licenses>
20+
<licenses>
21+
<license>
22+
<name>The Apache Software License, Version 2.0</name>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
24+
</license>
25+
</licenses>
2626

27-
<developers>
28-
<developer>
29-
<name>Anshoo Arora</name>
30-
<url>https://github.com/anshooarora</url>
31-
<id>anshooarora</id>
32-
<roles>
33-
<role>Owner</role>
34-
</roles>
35-
</developer>
36-
</developers>
27+
<developers>
28+
<developer>
29+
<name>Anshoo Arora</name>
30+
<url>https://github.com/anshooarora</url>
31+
<id>anshooarora</id>
32+
<roles>
33+
<role>Owner</role>
34+
</roles>
35+
</developer>
36+
</developers>
3737

38-
<properties>
39-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40-
</properties>
38+
<properties>
39+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
40+
</properties>
4141

42-
<dependencies>
43-
<dependency>
44-
<groupId>io.reactivex.rxjava3</groupId>
45-
<artifactId>rxjava</artifactId>
46-
<version>3.0.4</version>
47-
</dependency>
48-
<dependency>
49-
<groupId>org.freemarker</groupId>
50-
<artifactId>freemarker</artifactId>
51-
<version>2.3.30</version>
52-
</dependency>
53-
<dependency>
54-
<groupId>org.projectlombok</groupId>
55-
<artifactId>lombok</artifactId>
56-
<version>1.18.12</version>
57-
</dependency>
58-
<dependency>
59-
<groupId>com.google.code.gson</groupId>
60-
<artifactId>gson</artifactId>
61-
<version>2.8.6</version>
62-
</dependency>
42+
<dependencies>
43+
<dependency>
44+
<groupId>io.reactivex.rxjava3</groupId>
45+
<artifactId>rxjava</artifactId>
46+
<version>3.0.4</version>
47+
</dependency>
48+
<dependency>
49+
<groupId>org.freemarker</groupId>
50+
<artifactId>freemarker</artifactId>
51+
<version>2.3.30</version>
52+
</dependency>
53+
<dependency>
54+
<groupId>org.projectlombok</groupId>
55+
<artifactId>lombok</artifactId>
56+
<version>1.18.12</version>
57+
</dependency>
58+
<dependency>
59+
<groupId>com.google.code.gson</groupId>
60+
<artifactId>gson</artifactId>
61+
<version>2.8.6</version>
62+
</dependency>
6363

64-
<!-- test -->
65-
<dependency>
66-
<groupId>org.testng</groupId>
67-
<artifactId>testng</artifactId>
68-
<version>7.1.0</version>
69-
<scope>test</scope>
70-
</dependency>
71-
</dependencies>
64+
<!-- test -->
65+
<dependency>
66+
<groupId>org.testng</groupId>
67+
<artifactId>testng</artifactId>
68+
<version>7.1.0</version>
69+
<scope>test</scope>
70+
</dependency>
71+
</dependencies>
7272

73-
<reporting>
74-
<plugins>
75-
<plugin>
76-
<groupId>org.apache.maven.plugins</groupId>
77-
<artifactId>maven-checkstyle-plugin</artifactId>
78-
<version>2.16</version>
79-
<reportSets>
80-
<reportSet>
81-
<reports>
82-
<report>checkstyle</report>
83-
</reports>
84-
</reportSet>
85-
</reportSets>
86-
</plugin>
87-
</plugins>
88-
</reporting>
73+
<reporting>
74+
<plugins>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-checkstyle-plugin</artifactId>
78+
<version>2.16</version>
79+
<reportSets>
80+
<reportSet>
81+
<reports>
82+
<report>checkstyle</report>
83+
</reports>
84+
</reportSet>
85+
</reportSets>
86+
</plugin>
87+
</plugins>
88+
</reporting>
8989

90-
<build>
91-
<sourceDirectory>src/main/java</sourceDirectory>
92-
<plugins>
93-
<plugin>
94-
<groupId>org.apache.maven.plugins</groupId>
95-
<artifactId>maven-compiler-plugin</artifactId>
96-
<version>3.6.1</version>
97-
<configuration>
98-
<source>1.8</source>
99-
<target>1.8</target>
100-
</configuration>
101-
</plugin>
102-
<plugin>
103-
<groupId>org.apache.maven.plugins</groupId>
104-
<artifactId>maven-resources-plugin</artifactId>
105-
<version>3.1.0</version>
106-
</plugin>
107-
<plugin>
108-
<groupId>org.jacoco</groupId>
109-
<artifactId>jacoco-maven-plugin</artifactId>
110-
<version>0.8.5</version>
111-
<executions>
112-
<execution>
113-
<goals>
114-
<goal>prepare-agent</goal>
115-
</goals>
116-
</execution>
117-
<execution>
118-
<id>report</id>
119-
<phase>test</phase>
120-
<goals>
121-
<goal>report</goal>
122-
</goals>
123-
</execution>
124-
</executions>
125-
</plugin>
126-
</plugins>
127-
</build>
90+
<build>
91+
<sourceDirectory>src/main/java</sourceDirectory>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-compiler-plugin</artifactId>
96+
<version>3.6.1</version>
97+
<configuration>
98+
<source>1.8</source>
99+
<target>1.8</target>
100+
</configuration>
101+
</plugin>
102+
<plugin>
103+
<groupId>org.apache.maven.plugins</groupId>
104+
<artifactId>maven-resources-plugin</artifactId>
105+
<version>3.1.0</version>
106+
</plugin>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-gpg-plugin</artifactId>
110+
<version>1.6</version>
111+
<executions>
112+
<execution>
113+
<id>sign-artifacts</id>
114+
<phase>verify</phase>
115+
<goals>
116+
<goal>sign</goal>
117+
</goals>
118+
</execution>
119+
</executions>
120+
</plugin>
121+
<plugin>
122+
<groupId>org.jacoco</groupId>
123+
<artifactId>jacoco-maven-plugin</artifactId>
124+
<version>0.8.5</version>
125+
<executions>
126+
<execution>
127+
<goals>
128+
<goal>prepare-agent</goal>
129+
</goals>
130+
</execution>
131+
<execution>
132+
<id>report</id>
133+
<phase>test</phase>
134+
<goals>
135+
<goal>report</goal>
136+
</goals>
137+
</execution>
138+
</executions>
139+
</plugin>
140+
</plugins>
141+
</build>
128142

129-
<profiles>
130-
<profile>
131-
<build>
132-
<plugins>
133-
<plugin>
134-
<groupId>org.apache.maven.plugins</groupId>
135-
<artifactId>maven-source-plugin</artifactId>
136-
<version>3.0.1</version>
137-
<executions>
138-
<execution>
139-
<id>attach-sources</id>
140-
<goals>
141-
<goal>jar</goal>
142-
</goals>
143-
</execution>
144-
</executions>
145-
</plugin>
146-
<plugin>
147-
<groupId>org.apache.maven.plugins</groupId>
148-
<artifactId>maven-javadoc-plugin</artifactId>
149-
<version>3.0.1</version>
150-
<executions>
151-
<execution>
152-
<id>attach-javadocs</id>
153-
<goals>
154-
<goal>jar</goal>
155-
</goals>
156-
</execution>
157-
</executions>
158-
</plugin>
159-
</plugins>
160-
</build>
161-
</profile>
162-
</profiles>
143+
<profiles>
144+
<profile>
145+
<id>release-sign-artifacts</id>
146+
<activation>
147+
<property>
148+
<name>performRelease</name>
149+
<value>true</value>
150+
</property>
151+
</activation>
152+
<properties>
153+
<gpg.keyname>41414BBD</gpg.keyname>
154+
<!-- GPG Key ID to use for signing -->
155+
<release.username>anshooarora</release.username>
156+
<!-- username for our svn repository -->
157+
</properties>
158+
<build>
159+
<plugins>
160+
<plugin>
161+
<groupId>org.apache.maven.plugins</groupId>
162+
<artifactId>maven-source-plugin</artifactId>
163+
<version>3.0.1</version>
164+
<executions>
165+
<execution>
166+
<id>attach-sources</id>
167+
<goals>
168+
<goal>jar</goal>
169+
</goals>
170+
</execution>
171+
</executions>
172+
</plugin>
173+
<plugin>
174+
<groupId>org.apache.maven.plugins</groupId>
175+
<artifactId>maven-javadoc-plugin</artifactId>
176+
<version>3.0.1</version>
177+
<executions>
178+
<execution>
179+
<id>attach-javadocs</id>
180+
<goals>
181+
<goal>jar</goal>
182+
</goals>
183+
</execution>
184+
</executions>
185+
</plugin>
186+
</plugins>
187+
</build>
188+
</profile>
189+
</profiles>
163190

164-
<distributionManagement>
165-
<snapshotRepository>
166-
<id>ossrh</id>
167-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
168-
</snapshotRepository>
169-
<repository>
170-
<id>ossrh</id>
171-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
172-
</repository>
173-
</distributionManagement>
191+
<distributionManagement>
192+
<snapshotRepository>
193+
<id>ossrh</id>
194+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
195+
</snapshotRepository>
196+
<repository>
197+
<id>ossrh</id>
198+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
199+
</repository>
200+
</distributionManagement>
174201
</project>

0 commit comments

Comments
 (0)