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-cucumber3-adapter</artifactId >
6+ <version >1.0.0</version >
7+ <name >extentreports-cucumber3-adapter</name >
8+ <url >http://extentreports.com</url >
9+ <description >Cucumber-JVM 3 adapter for Extent Framework</description >
10+
11+ <scm >
12+ <connection >scm:git:https://github.com/extent-framework/extentreports-cucumber3-adapter.git</connection >
13+ <developerConnection >scm:git:https://github.com/extent-framework/extentreports-cucumber3-adapter.git</developerConnection >
14+ <url >https://github.com/extent-framework/extentreports-cucumber3-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>3.0.2</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