Subversion Repositories SmartDukaan

Rev

Blame | Last modification | View Log | RSS feed

<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">
        <modelVersion>4.0.0</modelVersion>
        <groupId>in.shop2020</groupId>
        <artifactId>SeleniumTests</artifactId>
        <version>1.0-SNAPSHOT</version>
        <name>SeleniumTests</name>
        <packaging>jar</packaging>
        <build>
                <plugins>
                        <plugin>
                                <artifactId>maven-compiler-plugin</artifactId>
                                <version>2.4</version>
                                <configuration>
                                        <debug>true</debug>
                                        <optimize>true</optimize>
                                        <source>1.6</source>
                                        <target>1.6</target>
                                </configuration>
                        </plugin>
                </plugins>
        </build>
        <dependencies>
                <dependency>
                        <groupId>org.testng</groupId>
                        <artifactId>testng</artifactId>
                        <version>6.8.7</version>
                </dependency>
                <dependency>
                        <groupId>org.seleniumhq.selenium</groupId>
                        <artifactId>selenium-java</artifactId>
                        <version>2.37.1</version>
                </dependency> 
                <dependency>
                        <groupId>junit</groupId>
                        <artifactId>junit</artifactId>
                        <version>4.8.2</version>
                </dependency>
                <dependency>
                        <groupId>in.shop2020</groupId>
                        <artifactId>LoggingSelenium</artifactId>
                        <version>1.0</version>
                </dependency>
        </dependencies>
</project>