Skip to content

Commit 9c1dab2

Browse files
committed
initial
0 parents  commit 9c1dab2

File tree

204 files changed

+21702
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

204 files changed

+21702
-0
lines changed

.gitattributes

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.gitignore

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# Compiled class file
2+
*.class
3+
4+
# Log file
5+
*.log
6+
7+
# BlueJ files
8+
*.ctxt
9+
10+
# Mobile Tools for Java (J2ME)
11+
.mtj.tmp/
12+
13+
# Package Files #
14+
*.jar
15+
*.war
16+
*.nar
17+
*.ear
18+
*.zip
19+
*.tar.gz
20+
*.rar
21+
22+
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
23+
hs_err_pid*
24+
25+
# eclipse
26+
.classpath
27+
.project
28+
.settings/
29+
30+
# java folders
31+
target/
32+
test-output/
33+
*.iml

LICENSE

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
ExtentReports Community Version
2+
3+
Copyright 2018 AventStack
4+
5+
The BSD 3-Clause License: http://opensource.org/licenses/BSD-3-Clause
6+
7+
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
8+
9+
1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
10+
2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
11+
3. Neither the name of the copyright holder nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
12+
13+
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL aventstack.com BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

config/logger-config.xml

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

config/v3html-config.xml

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,49 @@
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+
<protocol>https</protocol>
16+
17+
<!-- title of the document -->
18+
<documentTitle>Extent Framework</documentTitle>
19+
20+
<!-- report name - displayed at top-nav -->
21+
<reportName>Build 1</reportName>
22+
23+
<!-- timestamp format -->
24+
<timeStampFormat>MMM dd, yyyy HH:mm:ss</timeStampFormat>
25+
26+
<!-- settings to enable/disable views -->
27+
<enableCategoryView>true</enableCategoryView>
28+
<enableAuthorView>false</enableAuthorView>
29+
<enableExceptionView>true</enableExceptionView>
30+
<enableTestRunnerLogsView>true</enableTestRunnerLogsView>
31+
32+
<!-- custom javascript -->
33+
<scripts>
34+
<![CDATA[
35+
$(document).ready(function() {
36+
37+
});
38+
]]>
39+
</scripts>
40+
41+
<!-- custom styles -->
42+
<styles>
43+
<![CDATA[
44+
45+
]]>
46+
</styles>
47+
48+
</configuration>
49+
</extentreports>

pom-nexus.xml

Lines changed: 187 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,187 @@
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">
2+
<modelVersion>4.0.0</modelVersion>
3+
4+
<groupId>com.aventstack</groupId>
5+
<artifactId>extentreports</artifactId>
6+
<version>4.0.0</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+
39+
<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>
65+
<dependency>
66+
<groupId>com.google.code.gson</groupId>
67+
<artifactId>gson</artifactId>
68+
<version>2.8.5</version>
69+
</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+
187+
</project>

0 commit comments

Comments
 (0)