Subversion Repositories SmartDukaan

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
8614 kshitij.so 1
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2
	xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
	<modelVersion>4.0.0</modelVersion>
4
	<groupId>in.shop2020</groupId>
5
	<artifactId>SeleniumTests</artifactId>
6
	<version>1.0-SNAPSHOT</version>
7
	<name>SeleniumTests</name>
8
	<packaging>jar</packaging>
9
	<build>
10
		<plugins>
11
			<plugin>
12
				<artifactId>maven-compiler-plugin</artifactId>
13
				<version>2.4</version>
14
				<configuration>
15
					<debug>true</debug>
16
					<optimize>true</optimize>
17
					<source>1.6</source>
18
					<target>1.6</target>
19
				</configuration>
20
			</plugin>
21
		</plugins>
22
	</build>
23
	<dependencies>
24
		<dependency>
25
			<groupId>org.testng</groupId>
26
			<artifactId>testng</artifactId>
27
			<version>6.8.7</version>
28
		</dependency>
29
		<dependency>
30
        		<groupId>org.seleniumhq.selenium</groupId>
31
        		<artifactId>selenium-java</artifactId>
32
        		<version>2.37.1</version>
33
    		</dependency> 
34
		<dependency>
35
			<groupId>junit</groupId>
36
			<artifactId>junit</artifactId>
37
			<version>4.8.2</version>
38
		</dependency>
39
		<dependency>
40
			<groupId>in.shop2020</groupId>
41
			<artifactId>LoggingSelenium</artifactId>
42
			<version>1.0</version>
43
		</dependency>
44
	</dependencies>
45
</project>