2024-06-11 05:10:00 +00:00
|
|
|
<project xmlns="https://maven.apache.org/POM/4.0.0" xmlns:xsi="https://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="https://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2024-05-29 09:53:48 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>DCIMC_Check</groupId>
|
|
|
|
<artifactId>DCIMC_Check</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<junit.jupiter.version>5.6.0</junit.jupiter.version>
|
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
|
|
<project.build.testSourceDirectory>src/test/java</project.build.testSourceDirectory>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Other dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.relevantcodes/extentreports -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.relevantcodes</groupId>
|
|
|
|
<artifactId>extentreports</artifactId>
|
|
|
|
<version>2.41.2</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
<version>1.5.6</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2024-06-11 05:10:00 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
<version>4.20.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
2024-05-31 12:35:04 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/io.github.bonigarcia/webdrivermanager -->
|
2024-05-29 09:53:48 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.bonigarcia</groupId>
|
|
|
|
<artifactId>webdrivermanager</artifactId>
|
2024-05-31 12:35:04 +00:00
|
|
|
<version>5.5.3</version>
|
2024-05-29 09:53:48 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.aventstack/extentreports -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aventstack</groupId>
|
|
|
|
<artifactId>extentreports</artifactId>
|
|
|
|
<version>3.1.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Apache POI for Excel manipulation -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
<version>4.1.2</version> <!-- Use the latest version available -->
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>4.1.2</version> <!-- Use the latest version available -->
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>4.1.2</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>dom4j</groupId>
|
|
|
|
<artifactId>dom4j</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>gherkin</artifactId>
|
|
|
|
<version>5.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.mail</groupId>
|
|
|
|
<artifactId>javax.mail-api</artifactId>
|
|
|
|
<version>1.5.5</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/com.github.ralfstuckert.pdfbox-layout/pdfbox2-layout -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ralfstuckert.pdfbox-layout</groupId>
|
|
|
|
<artifactId>pdfbox2-layout</artifactId>
|
|
|
|
<version>0.8.6</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.13.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.testng/testng -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testng</groupId>
|
|
|
|
<artifactId>testng</artifactId>
|
|
|
|
<version>6.14.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.apple</groupId>
|
|
|
|
<artifactId>AppleJavaExtensions</artifactId>
|
|
|
|
<version>1.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-java8 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-java8</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-junit -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-junit</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/io.cucumber/cucumber-picocontainer -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-picocontainer</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/io.cucumber/cucumber-core -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-core</artifactId>
|
|
|
|
<version>4.8.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
<version>3.141.59</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/com.aventstack/extentreports-cucumber4-adapter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aventstack</groupId>
|
|
|
|
<artifactId>extentreports-cucumber4-adapter</artifactId>
|
|
|
|
<version>1.0.12</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-java</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>cucumber-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
|
|
|
|
<groupId>org.freemarker</groupId>
|
|
|
|
|
|
|
|
<artifactId>freemarker</artifactId>
|
|
|
|
|
|
|
|
<version>2.3.30</version>
|
|
|
|
|
|
|
|
</dependency>
|
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/org.apache.maven/maven-plugin-api -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven</groupId>
|
|
|
|
<artifactId>maven-plugin-api</artifactId>
|
|
|
|
<version>3.8.3</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>3.0.0-M5</version> <!-- Use the appropriate version -->
|
|
|
|
<configuration>
|
|
|
|
<suiteXmlFiles>
|
|
|
|
<suiteXmlFile>testng.xml</suiteXmlFile>
|
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|