Skip to content

Commit feb5445

Browse files
committed
initial
0 parents  commit feb5445

25 files changed

+1868
-0
lines changed

.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+
29+
target/
30+
test-output/
31+
.idea/
32+
*.iml
33+
.settings/

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

pom.xml

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

0 commit comments

Comments
 (0)