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
- <groupId >com.startingwithseleniumwebdriver.automation</groupId >
6
- <artifactId >realtime-report</artifactId >
7
- <version >v2.0</version >
8
- <name >RealTimeReportTestNG</name >
9
- <description >Real Time Reporting With TestNG</description >
10
- <dependencies >
11
- <!-- https://mvnrepository.com/artifact/org.testng/testng -->
12
- <dependency >
13
- <groupId >org.testng</groupId >
14
- <artifactId >testng</artifactId >
15
- <version >7.1.0</version >
16
- </dependency >
17
- <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
18
- <dependency >
19
- <groupId >org.seleniumhq.selenium</groupId >
20
- <artifactId >selenium-java</artifactId >
21
- <version >3.141.59</version >
22
- </dependency >
23
- <!-- https://mvnrepository.com/artifact/javax.xml/jaxb-impl -->
24
- <dependency >
25
- <groupId >javax.xml</groupId >
26
- <artifactId >jaxb-impl</artifactId >
27
- <version >2.1</version >
28
- </dependency >
29
- <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
30
- <dependency >
31
- <groupId >io.github.bonigarcia</groupId >
32
- <artifactId >webdrivermanager</artifactId >
33
- <version >4.0.0</version >
34
- </dependency >
35
- <dependency >
36
- <groupId >org.uncommons</groupId >
37
- <artifactId >reportng</artifactId >
38
- <version >1.1.4</version >
39
- </dependency >
40
- <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
41
- <dependency >
42
- <groupId >commons-io</groupId >
43
- <artifactId >commons-io</artifactId >
44
- <version >2.6</version >
45
- </dependency >
46
- </dependencies >
47
- <build >
48
- <plugins >
49
- <plugin >
50
- <groupId >org.apache.maven.plugins</groupId >
51
- <artifactId >maven-surefire-plugin</artifactId >
52
- <version >2.21.0</version >
53
- <configuration >
54
- <suiteXmlFiles >
55
- <suiteXmlFile >./src/test/resources/testNGXML/testng.xml/</suiteXmlFile >
56
- </suiteXmlFiles >
57
- </configuration >
58
- </plugin >
59
- <plugin >
60
- <groupId >org.apache.maven.plugins</groupId >
61
- <artifactId >maven-compiler-plugin</artifactId >
62
- <version >3.5.1</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-source-plugin</artifactId >
71
- <executions >
72
- <execution >
73
- <id >attach-sources</id >
74
- <goals >
75
- <goal >jar</goal >
76
- </goals >
77
- </execution >
78
- </executions >
79
- </plugin >
80
- </plugins >
81
- </build >
82
- </project >
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
+ <groupId >com.startingwithseleniumwebdriver.automation</groupId >
6
+ <artifactId >realtime-report</artifactId >
7
+ <version >v2.0</version >
8
+ <name >RealTimeReportTestNG</name >
9
+ <description >Real Time Reporting With TestNG</description >
10
+ <dependencies >
11
+ <!-- https://mvnrepository.com/artifact/org.testng/testng -->
12
+ <dependency >
13
+ <groupId >org.testng</groupId >
14
+ <artifactId >testng</artifactId >
15
+ <version >7.1.0</version >
16
+ </dependency >
17
+ <!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
18
+ <dependency >
19
+ <groupId >org.seleniumhq.selenium</groupId >
20
+ <artifactId >selenium-java</artifactId >
21
+ <version >3.141.59</version >
22
+ </dependency >
23
+ <!-- https://mvnrepository.com/artifact/javax.xml/jaxb-impl -->
24
+ <dependency >
25
+ <groupId >javax.xml</groupId >
26
+ <artifactId >jaxb-impl</artifactId >
27
+ <version >2.1</version >
28
+ </dependency >
29
+ <!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
30
+ <dependency >
31
+ <groupId >io.github.bonigarcia</groupId >
32
+ <artifactId >webdrivermanager</artifactId >
33
+ <version >4.0.0</version >
34
+ </dependency >
35
+ <dependency >
36
+ <groupId >org.uncommons</groupId >
37
+ <artifactId >reportng</artifactId >
38
+ <version >1.1.4</version >
39
+ </dependency >
40
+ <!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
41
+ <dependency >
42
+ <groupId >commons-io</groupId >
43
+ <artifactId >commons-io</artifactId >
44
+ <version >2.6</version >
45
+ </dependency >
46
+ </dependencies >
47
+ <build >
48
+ <plugins >
49
+ <plugin >
50
+ <groupId >org.apache.maven.plugins</groupId >
51
+ <artifactId >maven-surefire-plugin</artifactId >
52
+ <version >2.21.0</version >
53
+ <configuration >
54
+ <suiteXmlFiles >
55
+ <suiteXmlFile >./src/test/resources/testNGXML/testng.xml/</suiteXmlFile >
56
+ </suiteXmlFiles >
57
+ </configuration >
58
+ </plugin >
59
+ <plugin >
60
+ <groupId >org.apache.maven.plugins</groupId >
61
+ <artifactId >maven-compiler-plugin</artifactId >
62
+ <version >3.5.1</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-source-plugin</artifactId >
71
+ <executions >
72
+ <execution >
73
+ <id >attach-sources</id >
74
+ <goals >
75
+ <goal >jar</goal >
76
+ </goals >
77
+ </execution >
78
+ </executions >
79
+ </plugin >
80
+ </plugins >
81
+ </build >
82
+ </project >
0 commit comments