Skip to content

Commit d21fbbc

Browse files
committed
update pom.xml, v1.0.2
1 parent f288307 commit d21fbbc

File tree

2 files changed

+183
-179
lines changed

2 files changed

+183
-179
lines changed

pom-nexus.xml

Lines changed: 165 additions & 163 deletions
Original file line numberDiff line numberDiff line change
@@ -1,165 +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-testng-adapter</artifactId>
6-
<version>1.0.1</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</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>
1+
<project xmlns="http://maven.apache.org/POM/4.0.0"
2+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4+
<modelVersion>4.0.0</modelVersion>
5+
6+
<groupId>com.aventstack</groupId>
7+
<artifactId>extentreports-testng-adapter</artifactId>
8+
<version>1.0.2</version>
9+
<name>extentreports-testng-adapter</name>
10+
<url>http://extentreports.com</url>
11+
<description>TestNG adapter for Extent Framework</description>
12+
13+
<scm>
14+
<connection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</connection>
15+
<developerConnection>scm:git:https://github.com/extent-framework/extentreports-testng-adapter.git</developerConnection>
16+
<url>https://github.com/extent-framework/extentreports-testng-adapter</url>
17+
</scm>
18+
19+
<licenses>
20+
<license>
21+
<name>The MIT License</name>
22+
<url>https://opensource.org/licenses/MIT</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+
</properties>
40+
41+
<dependencies>
42+
<dependency>
43+
<groupId>com.aventstack</groupId>
44+
<artifactId>extentreports</artifactId>
45+
<version>4.0.1</version>
46+
</dependency>
47+
<dependency>
48+
<groupId>org.mongodb</groupId>
49+
<artifactId>mongodb-driver</artifactId>
50+
<version>3.3.0</version>
51+
</dependency>
52+
<dependency>
53+
<groupId>org.testng</groupId>
54+
<artifactId>testng</artifactId>
55+
<version>6.9.10</version>
56+
</dependency>
57+
</dependencies>
58+
59+
<build>
60+
<plugins>
7361
<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-
62+
<groupId>org.apache.maven.plugins</groupId>
63+
<artifactId>maven-compiler-plugin</artifactId>
64+
<version>2.3.2</version>
65+
<configuration>
66+
<source>1.8</source>
67+
<target>1.8</target>
68+
</configuration>
69+
</plugin>
70+
<plugin>
71+
<groupId>org.apache.maven.plugins</groupId>
72+
<artifactId>maven-resources-plugin</artifactId>
73+
<version>2.7</version>
74+
</plugin>
75+
<plugin>
76+
<groupId>org.apache.maven.plugins</groupId>
77+
<artifactId>maven-gpg-plugin</artifactId>
78+
<version>1.6</version>
79+
<executions>
80+
<execution>
81+
<id>sign-artifacts</id>
82+
<phase>verify</phase>
83+
<goals>
84+
<goal>sign</goal>
85+
</goals>
86+
</execution>
87+
</executions>
88+
</plugin>
89+
</plugins>
90+
</build>
91+
92+
<profiles>
93+
<profile>
94+
<id>release-sign-artifacts</id>
95+
<activation>
96+
<property>
97+
<name>performRelease</name>
98+
<value>true</value>
99+
</property>
100+
</activation>
101+
<properties>
102+
<gpg.keyname>1C85C082</gpg.keyname> <!-- GPG Key ID to use for signing -->
103+
<release.username>anshooarora</release.username> <!-- username for our svn repository -->
104+
</properties>
105+
<build>
106+
<resources>
107+
</resources>
108+
<plugins>
109+
<plugin>
110+
<groupId>org.apache.maven.plugins</groupId>
111+
<artifactId>maven-gpg-plugin</artifactId>
112+
<version>1.4</version>
113+
<executions>
114+
<execution>
115+
<id>sign-artifacts</id>
116+
<phase>verify</phase>
117+
<configuration>
118+
<sources>
119+
<source>src/</source>
120+
</sources>
121+
</configuration>
122+
</execution>
123+
</executions>
124+
</plugin>
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+
165167
</project>

0 commit comments

Comments
 (0)