Skip to content

Commit ffef37c

Browse files
committed
initial
0 parents  commit ffef37c

31 files changed

+1613
-0
lines changed

.gitignore

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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+
/target/
25+
26+
# eclipse
27+
.settings/
28+
.classpath
29+
.project
30+
31+
# java
32+
target/
33+
34+
# testng
35+
test-output/

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2018 aventstack
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

pom-nexus.xml

Lines changed: 165 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,165 @@
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-testng-adapter</artifactId>
6+
<version>1.0.0</version>
7+
<name>extentreports-testng-adapter</name>
8+
<url>http://extentreports.com</url>
9+
<description>TestNG adapter for Extent Framework</description>
10+
11+
<scm>
12+
<connection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</connection>
13+
<developerConnection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</developerConnection>
14+
<url>https://github.com/extent-framework/extentreports-testng-adapter</url>
15+
</scm>
16+
17+
<licenses>
18+
<license>
19+
<name>The MIT License</name>
20+
<url>https://opensource.org/licenses/MIT</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>com.aventstack</groupId>
42+
<artifactId>extentreports</artifactId>
43+
<version>4.0.0-SNAPSHOT</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.testng</groupId>
52+
<artifactId>testng</artifactId>
53+
<version>6.9.10</version>
54+
</dependency>
55+
</dependencies>
56+
57+
<build>
58+
<plugins>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-compiler-plugin</artifactId>
62+
<version>2.3.2</version>
63+
<configuration>
64+
<source>1.8</source>
65+
<target>1.8</target>
66+
</configuration>
67+
</plugin>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-resources-plugin</artifactId>
71+
<version>2.7</version>
72+
</plugin>
73+
<plugin>
74+
<groupId>org.apache.maven.plugins</groupId>
75+
<artifactId>maven-gpg-plugin</artifactId>
76+
<version>1.6</version>
77+
<executions>
78+
<execution>
79+
<id>sign-artifacts</id>
80+
<phase>verify</phase>
81+
<goals>
82+
<goal>sign</goal>
83+
</goals>
84+
</execution>
85+
</executions>
86+
</plugin>
87+
</plugins>
88+
</build>
89+
90+
<profiles>
91+
<profile>
92+
<id>release-sign-artifacts</id>
93+
<activation>
94+
<property>
95+
<name>performRelease</name>
96+
<value>true</value>
97+
</property>
98+
</activation>
99+
<properties>
100+
<gpg.keyname>1C85C082</gpg.keyname> <!-- GPG Key ID to use for signing -->
101+
<release.username>anshooarora</release.username> <!-- username for our svn repository -->
102+
</properties>
103+
<build>
104+
<resources>
105+
</resources>
106+
<plugins>
107+
<plugin>
108+
<groupId>org.apache.maven.plugins</groupId>
109+
<artifactId>maven-gpg-plugin</artifactId>
110+
<version>1.4</version>
111+
<executions>
112+
<execution>
113+
<id>sign-artifacts</id>
114+
<phase>verify</phase>
115+
<configuration>
116+
<sources>
117+
<source>src/</source>
118+
</sources>
119+
</configuration>
120+
</execution>
121+
</executions>
122+
</plugin>
123+
<plugin>
124+
<groupId>org.apache.maven.plugins</groupId>
125+
<artifactId>maven-source-plugin</artifactId>
126+
<version>2.3</version>
127+
<executions>
128+
<execution>
129+
<id>attach-sources</id>
130+
<goals>
131+
<goal>jar</goal>
132+
</goals>
133+
</execution>
134+
</executions>
135+
</plugin>
136+
<plugin>
137+
<groupId>org.apache.maven.plugins</groupId>
138+
<artifactId>maven-javadoc-plugin</artifactId>
139+
<version>2.3</version>
140+
<executions>
141+
<execution>
142+
<id>attach-javadocs</id>
143+
<goals>
144+
<goal>jar</goal>
145+
</goals>
146+
</execution>
147+
</executions>
148+
</plugin>
149+
</plugins>
150+
</build>
151+
</profile>
152+
</profiles>
153+
154+
<distributionManagement>
155+
<snapshotRepository>
156+
<id>ossrh</id>
157+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
158+
</snapshotRepository>
159+
<repository>
160+
<id>ossrh</id>
161+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
162+
</repository>
163+
</distributionManagement>
164+
165+
</project>

pom.xml

Lines changed: 151 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,151 @@
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-testng-adapter</artifactId>
6+
<version>1.0.0</version>
7+
<name>extentreports-testng-adapter</name>
8+
<url>http://extentreports.com</url>
9+
<description>TestNG adapter for Extent Framework</description>
10+
11+
<scm>
12+
<connection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</connection>
13+
<developerConnection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</developerConnection>
14+
<url>https://github.com/extent-framework/extentreports-testng-adapter</url>
15+
</scm>
16+
17+
<licenses>
18+
<license>
19+
<name>The MIT License</name>
20+
<url>https://opensource.org/licenses/MIT</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>com.aventstack</groupId>
42+
<artifactId>extentreports</artifactId>
43+
<version>4.0.0-SNAPSHOT</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.testng</groupId>
52+
<artifactId>testng</artifactId>
53+
<version>6.9.10</version>
54+
</dependency>
55+
</dependencies>
56+
57+
<build>
58+
<plugins>
59+
<plugin>
60+
<groupId>org.apache.maven.plugins</groupId>
61+
<artifactId>maven-compiler-plugin</artifactId>
62+
<version>2.3.2</version>
63+
<configuration>
64+
<source>1.8</source>
65+
<target>1.8</target>
66+
</configuration>
67+
</plugin>
68+
<plugin>
69+
<groupId>org.apache.maven.plugins</groupId>
70+
<artifactId>maven-resources-plugin</artifactId>
71+
<version>2.7</version>
72+
</plugin>
73+
</plugins>
74+
</build>
75+
76+
<profiles>
77+
<profile>
78+
<id>release-sign-artifacts</id>
79+
<activation>
80+
<property>
81+
<name>performRelease</name>
82+
<value>true</value>
83+
</property>
84+
</activation>
85+
<properties>
86+
<gpg.keyname>1C85C082</gpg.keyname> <!-- GPG Key ID to use for signing -->
87+
<release.username>anshooarora</release.username> <!-- username for our svn repository -->
88+
</properties>
89+
<build>
90+
<resources>
91+
</resources>
92+
<plugins>
93+
<plugin>
94+
<groupId>org.apache.maven.plugins</groupId>
95+
<artifactId>maven-gpg-plugin</artifactId>
96+
<version>1.4</version>
97+
<executions>
98+
<execution>
99+
<id>sign-artifacts</id>
100+
<phase>verify</phase>
101+
<configuration>
102+
<sources>
103+
<source>src/</source>
104+
</sources>
105+
</configuration>
106+
</execution>
107+
</executions>
108+
</plugin>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-source-plugin</artifactId>
112+
<version>2.3</version>
113+
<executions>
114+
<execution>
115+
<id>attach-sources</id>
116+
<goals>
117+
<goal>jar</goal>
118+
</goals>
119+
</execution>
120+
</executions>
121+
</plugin>
122+
<plugin>
123+
<groupId>org.apache.maven.plugins</groupId>
124+
<artifactId>maven-javadoc-plugin</artifactId>
125+
<version>2.3</version>
126+
<executions>
127+
<execution>
128+
<id>attach-javadocs</id>
129+
<goals>
130+
<goal>jar</goal>
131+
</goals>
132+
</execution>
133+
</executions>
134+
</plugin>
135+
</plugins>
136+
</build>
137+
</profile>
138+
</profiles>
139+
140+
<distributionManagement>
141+
<snapshotRepository>
142+
<id>ossrh</id>
143+
<url>https://oss.sonatype.org/content/repositories/snapshots</url>
144+
</snapshotRepository>
145+
<repository>
146+
<id>ossrh</id>
147+
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2</url>
148+
</repository>
149+
</distributionManagement>
150+
151+
</project>

0 commit comments

Comments
 (0)