Skip to content

Commit 9fa9230

Browse files
author
AutomatedOwl
committed
Updated pom.xml for JUnit and TestNG.
1 parent dc23e1c commit 9fa9230

File tree

2 files changed

+54
-4
lines changed

2 files changed

+54
-4
lines changed

junit5/pom.xml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.github.automatedowl.tools</groupId>
8-
<artifactId>chromedriver-js-errors-collector</artifactId>
7+
<groupId>com.github.automatedowl</groupId>
8+
<artifactId>chromedriver-js-errors-collector-junit</artifactId>
99
<version>1.0.1</version>
10+
<name>${project.groupId}:${project.artifactId}</name>
11+
<description>Java library which allows to easily collect JS errors received in Chromedriver session,
12+
using annotations on test methods.</description>
13+
<url>https://github.com/AutomatedOwl</url>
1014
<build>
1115
<sourceDirectory>src/main/java</sourceDirectory>
1216
<testSourceDirectory>src/test/java</testSourceDirectory>
@@ -72,4 +76,25 @@
7276
<version>3.8.1</version>
7377
</dependency>
7478
</dependencies>
79+
<scm>
80+
<connection>scm:git:git://github.com/AutomatedOwl/chromedriver-js-errors-collector.git</connection>
81+
<developerConnection>
82+
scm:git:ssh://github.com:AutomatedOwl/chromedriver-js-errors-collector.git
83+
</developerConnection>
84+
<url>https://github.com/AutomatedOwl/chromedriver-js-errors-collector</url>
85+
</scm>
86+
<licenses>
87+
<license>
88+
<name>Apache License, Version 2.0</name>
89+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
90+
<distribution>repo</distribution>
91+
</license>
92+
</licenses>
93+
<developers>
94+
<developer>
95+
<id>AutomatedOwl</id>
96+
<email>automatedowl@yandex.com</email>
97+
<url>https://github.com/AutomatedOwl/</url>
98+
</developer>
99+
</developers>
75100
</project>

testng/pom.xml

Lines changed: 27 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,13 @@
44
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
55
<modelVersion>4.0.0</modelVersion>
66

7-
<groupId>com.github.automatedowl.tools</groupId>
8-
<artifactId>chromedriver-js-errors-collector</artifactId>
7+
<groupId>com.github.automatedowl</groupId>
8+
<artifactId>chromedriver-js-errors-collector-testng</artifactId>
99
<version>1.0.1</version>
10+
<name>${project.groupId}:${project.artifactId}</name>
11+
<description>Java library which allows to easily collect JS errors received in Chromedriver session,
12+
using annotations on test methods.</description>
13+
<url>https://github.com/AutomatedOwl</url>
1014
<build>
1115
<sourceDirectory>src/main/java</sourceDirectory>
1216
<testSourceDirectory>src/test/java</testSourceDirectory>
@@ -62,4 +66,25 @@
6266
<version>6.14.3</version>
6367
</dependency>
6468
</dependencies>
69+
<scm>
70+
<connection>scm:git:git://github.com/AutomatedOwl/chromedriver-js-errors-collector.git</connection>
71+
<developerConnection>
72+
scm:git:ssh://github.com:AutomatedOwl/chromedriver-js-errors-collector.git
73+
</developerConnection>
74+
<url>https://github.com/AutomatedOwl/chromedriver-js-errors-collector</url>
75+
</scm>
76+
<licenses>
77+
<license>
78+
<name>Apache License, Version 2.0</name>
79+
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
80+
<distribution>repo</distribution>
81+
</license>
82+
</licenses>
83+
<developers>
84+
<developer>
85+
<id>AutomatedOwl</id>
86+
<email>automatedowl@yandex.com</email>
87+
<url>https://github.com/AutomatedOwl/</url>
88+
</developer>
89+
</developers>
6590
</project>

0 commit comments

Comments
 (0)