Skip to content

Commit 4502c25

Browse files
committed
fixes invalid Freemarker version in release 4.1.0
1 parent ab9fe04 commit 4502c25

File tree

2 files changed

+18
-17
lines changed

2 files changed

+18
-17
lines changed

pom-nexus.xml

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,11 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
23
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
34
<modelVersion>4.0.0</modelVersion>
45

56
<groupId>com.aventstack</groupId>
67
<artifactId>extentreports</artifactId>
7-
<version>4.1.0</version>
8+
<version>4.1.1</version>
89

910
<name>extentreports</name>
1011
<url>www.extentreports.com</url>
@@ -19,7 +20,7 @@
1920
<licenses>
2021
<license>
2122
<name>The Apache Software License, Version 2.0</name>
22-
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
23+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
2324
</license>
2425
</licenses>
2526

@@ -36,25 +37,15 @@
3637

3738
<properties>
3839
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39-
<mongodb.version>3.3.0</mongodb.version>
40+
<mongodb.version>3.12.0</mongodb.version>
4041
<apache.httpcomponents.version>4.5.2</apache.httpcomponents.version>
4142
</properties>
4243

4344
<dependencies>
4445
<dependency>
4546
<groupId>org.freemarker</groupId>
4647
<artifactId>freemarker</artifactId>
47-
<version>2.3.23</version>
48-
</dependency>
49-
<dependency>
50-
<groupId>org.mongodb</groupId>
51-
<artifactId>mongodb-driver</artifactId>
52-
<version>${mongodb.version}</version>
53-
</dependency>
54-
<dependency>
55-
<groupId>org.mongodb</groupId>
56-
<artifactId>bson</artifactId>
57-
<version>${mongodb.version}</version>
48+
<version>2.3.29</version>
5849
</dependency>
5950
<dependency>
6051
<groupId>org.apache.httpcomponents</groupId>
@@ -69,7 +60,17 @@
6960
<dependency>
7061
<groupId>com.google.code.gson</groupId>
7162
<artifactId>gson</artifactId>
72-
<version>2.8.5</version>
63+
<version>2.8.6</version>
64+
</dependency>
65+
<dependency>
66+
<groupId>org.mongodb</groupId>
67+
<artifactId>mongodb-driver</artifactId>
68+
<version>${mongodb.version}</version>
69+
</dependency>
70+
<dependency>
71+
<groupId>org.mongodb</groupId>
72+
<artifactId>bson</artifactId>
73+
<version>${mongodb.version}</version>
7374
</dependency>
7475
<dependency>
7576
<groupId>org.testng</groupId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>com.aventstack</groupId>
77
<artifactId>extentreports</artifactId>
8-
<version>4.1.0</version>
8+
<version>4.1.1</version>
99

1010
<name>extentreports</name>
1111
<url>www.extentreports.com</url>

0 commit comments

Comments
 (0)