Skip to content

Instantly share code, notes, and snippets.

@muditlambda
Created February 4, 2022 06:24
Show Gist options
  • Select an option

  • Save muditlambda/6386aafdbdb25cffc8cc559884926ae8 to your computer and use it in GitHub Desktop.

Select an option

Save muditlambda/6386aafdbdb25cffc8cc559884926ae8 to your computer and use it in GitHub Desktop.

Revisions

  1. muditlambda created this gist Feb 4, 2022.
    32 changes: 32 additions & 0 deletions pom.xml
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,32 @@
    <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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>WebDriverEventListeners_Selenium_Java</groupId>
    <artifactId>WebDriverEventListeners_Selenium_Java</artifactId>
    <version>0.0.1-SNAPSHOT</version>
    <build>
    <sourceDirectory>src</sourceDirectory>
    <plugins>
    <plugin>
    <artifactId>maven-compiler-plugin</artifactId>
    <version>3.8.1</version>
    <configuration>
    <release>16</release>
    </configuration>
    </plugin>
    </plugins>

    </build>
    <dependencies>
    <dependency>
    <groupId>org.seleniumhq.selenium</groupId>
    <artifactId>selenium-java</artifactId>
    <version>3.141.59</version>
    </dependency>
    <dependency>
    <groupId>org.testng</groupId>
    <artifactId>testng</artifactId>
    <version>6.14.3</version>
    <scope>test</scope>
    </dependency>
    </dependencies>
    </project>