Skip to content

Commit 22a0ae1

Browse files
committed
release 4.0.2
1 parent 7ab2f04 commit 22a0ae1

File tree

2 files changed

+352
-340
lines changed

2 files changed

+352
-340
lines changed

pom-nexus.xml

Lines changed: 183 additions & 177 deletions
Original file line numberDiff line numberDiff line change
@@ -1,187 +1,193 @@
1-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
1+
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23
<modelVersion>4.0.0</modelVersion>
3-
4+
45
<groupId>com.aventstack</groupId>
56
<artifactId>extentreports</artifactId>
6-
<version>4.0.1</version>
7-
<name>extentreports</name>
8-
<url>www.extentreports.com</url>
9-
<description>Extent Framework</description>
10-
11-
<scm>
12-
<connection>scm:git:https://github.com/extent-framework/extentreports.git</connection>
13-
<developerConnection>scm:git:https://github.com/extent-framework/extentreports.git</developerConnection>
14-
<url>https://github.com/extent-framework/extentreports</url>
15-
</scm>
16-
17-
<licenses>
18-
<license>
19-
<name>The BSD 3-Clause License</name>
20-
<url>http://opensource.org/licenses/BSD-3-Clause</url>
21-
</license>
22-
</licenses>
23-
24-
<developers>
25-
<developer>
26-
<name>Anshoo Arora</name>
27-
<url>https://github.com/anshooarora</url>
28-
<id>anshoo.arora</id>
29-
<roles>
30-
<role>Owner</role>
31-
</roles>
32-
</developer>
33-
</developers>
34-
35-
<properties>
36-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
37-
</properties>
38-
7+
<version>4.0.2</version>
8+
9+
<name>extentreports</name>
10+
<url>www.extentreports.com</url>
11+
<description>Extent Framework</description>
12+
13+
<scm>
14+
<connection>scm:git:https://github.com/extent-framework/extentreports.git</connection>
15+
<developerConnection>scm:git:https://github.com/extent-framework/extentreports.git</developerConnection>
16+
<url>https://github.com/extent-framework/extentreports</url>
17+
</scm>
18+
19+
<licenses>
20+
<license>
21+
<name>The BSD 3-Clause License</name>
22+
<url>http://opensource.org/licenses/BSD-3-Clause</url>
23+
</license>
24+
</licenses>
25+
26+
<developers>
27+
<developer>
28+
<name>Anshoo Arora</name>
29+
<url>https://github.com/anshooarora</url>
30+
<id>anshoo.arora</id>
31+
<roles>
32+
<role>Owner</role>
33+
</roles>
34+
</developer>
35+
</developers>
36+
37+
<properties>
38+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
39+
<mongodb.version>3.3.0</mongodb.version>
40+
<apache.httpcomponents.version>4.5.2</apache.httpcomponents.version>
41+
</properties>
42+
3943
<dependencies>
40-
<dependency>
41-
<groupId>org.freemarker</groupId>
42-
<artifactId>freemarker</artifactId>
43-
<version>2.3.23</version>
44-
</dependency>
45-
<dependency>
46-
<groupId>org.mongodb</groupId>
47-
<artifactId>mongodb-driver</artifactId>
48-
<version>3.3.0</version>
49-
</dependency>
50-
<dependency>
51-
<groupId>org.mongodb</groupId>
52-
<artifactId>bson</artifactId>
53-
<version>3.3.0</version>
54-
</dependency>
55-
<dependency>
56-
<groupId>org.apache.httpcomponents</groupId>
57-
<artifactId>httpclient</artifactId>
58-
<version>4.5.2</version>
59-
</dependency>
60-
<dependency>
61-
<groupId>org.apache.httpcomponents</groupId>
62-
<artifactId>httpmime</artifactId>
63-
<version>4.5.2</version>
64-
</dependency>
44+
<dependency>
45+
<groupId>org.freemarker</groupId>
46+
<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>
58+
</dependency>
59+
<dependency>
60+
<groupId>org.apache.httpcomponents</groupId>
61+
<artifactId>httpclient</artifactId>
62+
<version>${apache.httpcomponents.version}</version>
63+
</dependency>
64+
<dependency>
65+
<groupId>org.apache.httpcomponents</groupId>
66+
<artifactId>httpmime</artifactId>
67+
<version>${apache.httpcomponents.version}</version>
68+
</dependency>
6569
<dependency>
6670
<groupId>com.google.code.gson</groupId>
6771
<artifactId>gson</artifactId>
6872
<version>2.8.5</version>
6973
</dependency>
70-
<dependency>
71-
<groupId>org.testng</groupId>
72-
<artifactId>testng</artifactId>
73-
<version>6.9.10</version>
74-
<scope>test</scope>
75-
</dependency>
76-
</dependencies>
77-
78-
<reporting>
79-
<plugins>
80-
<plugin>
81-
<groupId>org.apache.maven.plugins</groupId>
82-
<artifactId>maven-checkstyle-plugin</artifactId>
83-
<version>2.16</version>
84-
<reportSets>
85-
<reportSet>
86-
<reports>
87-
<report>checkstyle</report>
88-
</reports>
89-
</reportSet>
90-
</reportSets>
91-
</plugin>
92-
</plugins>
93-
</reporting>
94-
95-
<build>
96-
<plugins>
97-
<plugin>
98-
<groupId>org.apache.maven.plugins</groupId>
99-
<artifactId>maven-compiler-plugin</artifactId>
100-
<version>2.3.2</version>
101-
<configuration>
102-
<source>1.8</source>
103-
<target>1.8</target>
104-
</configuration>
105-
</plugin>
106-
<plugin>
107-
<groupId>org.apache.maven.plugins</groupId>
108-
<artifactId>maven-resources-plugin</artifactId>
109-
<version>2.7</version>
110-
</plugin>
111-
<plugin>
112-
<groupId>org.apache.maven.plugins</groupId>
113-
<artifactId>maven-gpg-plugin</artifactId>
114-
<version>1.6</version>
115-
<executions>
116-
<execution>
117-
<id>sign-artifacts</id>
118-
<phase>verify</phase>
119-
<goals>
120-
<goal>sign</goal>
121-
</goals>
122-
</execution>
123-
</executions>
124-
</plugin>
125-
</plugins>
126-
</build>
127-
128-
<profiles>
129-
<profile>
130-
<id>release-sign-artifacts</id>
131-
<activation>
132-
<property>
133-
<name>performRelease</name>
134-
<value>true</value>
135-
</property>
136-
</activation>
137-
<properties>
138-
<gpg.keyname>7A7DAF8A</gpg.keyname> <!-- GPG Key ID to use for signing -->
139-
<release.username>anshooarora</release.username> <!-- username for our svn repository -->
140-
</properties>
141-
<build>
142-
<resources>
143-
</resources>
144-
<plugins>
145-
<plugin>
146-
<groupId>org.apache.maven.plugins</groupId>
147-
<artifactId>maven-source-plugin</artifactId>
148-
<version>2.3</version>
149-
<executions>
150-
<execution>
151-
<id>attach-sources</id>
152-
<goals>
153-
<goal>jar</goal>
154-
</goals>
155-
</execution>
156-
</executions>
157-
</plugin>
158-
<plugin>
159-
<groupId>org.apache.maven.plugins</groupId>
160-
<artifactId>maven-javadoc-plugin</artifactId>
161-
<version>2.3</version>
162-
<executions>
163-
<execution>
164-
<id>attach-javadocs</id>
165-
<goals>
166-
<goal>jar</goal>
167-
</goals>
168-
</execution>
169-
</executions>
170-
</plugin>
171-
</plugins>
172-
</build>
173-
</profile>
174-
</profiles>
175-
176-
<distributionManagement>
177-
<snapshotRepository>
178-
<id>ossrh</id>
179-
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
180-
</snapshotRepository>
181-
<repository>
182-
<id>ossrh</id>
183-
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
184-
</repository>
185-
</distributionManagement>
186-
74+
<dependency>
75+
<groupId>org.testng</groupId>
76+
<artifactId>testng</artifactId>
77+
<version>6.9.10</version>
78+
<scope>test</scope>
79+
</dependency>
80+
</dependencies>
81+
82+
<reporting>
83+
<plugins>
84+
<plugin>
85+
<groupId>org.apache.maven.plugins</groupId>
86+
<artifactId>maven-checkstyle-plugin</artifactId>
87+
<version>2.16</version>
88+
<reportSets>
89+
<reportSet>
90+
<reports>
91+
<report>checkstyle</report>
92+
</reports>
93+
</reportSet>
94+
</reportSets>
95+
</plugin>
96+
</plugins>
97+
</reporting>
98+
99+
<build>
100+
<plugins>
101+
<plugin>
102+
<groupId>org.apache.maven.plugins</groupId>
103+
<artifactId>maven-compiler-plugin</artifactId>
104+
<version>2.3.2</version>
105+
<configuration>
106+
<source>1.8</source>
107+
<target>1.8</target>
108+
</configuration>
109+
</plugin>
110+
<plugin>
111+
<groupId>org.apache.maven.plugins</groupId>
112+
<artifactId>maven-resources-plugin</artifactId>
113+
<version>2.7</version>
114+
</plugin>
115+
<plugin>
116+
<groupId>org.apache.maven.plugins</groupId>
117+
<artifactId>maven-gpg-plugin</artifactId>
118+
<version>1.6</version>
119+
<executions>
120+
<execution>
121+
<id>sign-artifacts</id>
122+
<phase>verify</phase>
123+
<goals>
124+
<goal>sign</goal>
125+
</goals>
126+
</execution>
127+
</executions>
128+
</plugin>
129+
</plugins>
130+
</build>
131+
132+
<profiles>
133+
<profile>
134+
<id>release-sign-artifacts</id>
135+
<activation>
136+
<property>
137+
<name>performRelease</name>
138+
<value>true</value>
139+
</property>
140+
</activation>
141+
<properties>
142+
<gpg.keyname>7A7DAF8A</gpg.keyname>
143+
<!-- GPG Key ID to use for signing -->
144+
<release.username>anshooarora</release.username>
145+
<!-- username for our svn repository -->
146+
</properties>
147+
<build>
148+
<resources>
149+
</resources>
150+
<plugins>
151+
<plugin>
152+
<groupId>org.apache.maven.plugins</groupId>
153+
<artifactId>maven-source-plugin</artifactId>
154+
<version>2.3</version>
155+
<executions>
156+
<execution>
157+
<id>attach-sources</id>
158+
<goals>
159+
<goal>jar</goal>
160+
</goals>
161+
</execution>
162+
</executions>
163+
</plugin>
164+
<plugin>
165+
<groupId>org.apache.maven.plugins</groupId>
166+
<artifactId>maven-javadoc-plugin</artifactId>
167+
<version>2.3</version>
168+
<executions>
169+
<execution>
170+
<id>attach-javadocs</id>
171+
<goals>
172+
<goal>jar</goal>
173+
</goals>
174+
</execution>
175+
</executions>
176+
</plugin>
177+
</plugins>
178+
</build>
179+
</profile>
180+
</profiles>
181+
182+
<distributionManagement>
183+
<snapshotRepository>
184+
<id>ossrh</id>
185+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
186+
</snapshotRepository>
187+
<repository>
188+
<id>ossrh</id>
189+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
190+
</repository>
191+
</distributionManagement>
192+
187193
</project>

0 commit comments

Comments
 (0)