2023-10-05 05:23:50 +00:00
|
|
|
<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>DCIM_Counts_Check</groupId>
|
|
|
|
<artifactId>DCIM_Counts_Check</artifactId>
|
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
2023-10-09 07:23:14 +00:00
|
|
|
<packaging>jar</packaging>
|
2023-10-05 05:23:50 +00:00
|
|
|
|
|
|
|
<name>DCIM_Counts_Check</name>
|
|
|
|
<url>http://maven.apache.org</url>
|
|
|
|
|
|
|
|
<properties>
|
2023-10-03 09:17:23 +00:00
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
2023-10-05 05:23:50 +00:00
|
|
|
<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>
|
2023-10-03 09:17:23 +00:00
|
|
|
</properties>
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>jitpack.io</id>
|
|
|
|
<url>https://jitpack.io</url>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-10-09 07:23:14 +00:00
|
|
|
<!-- Other dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>4.12</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2023-10-05 05:23:50 +00:00
|
|
|
|
2023-10-18 09:24:40 +00:00
|
|
|
<!-- 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/com.aventstack/extentreports -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aventstack</groupId>
|
|
|
|
<artifactId>extentreports</artifactId>
|
|
|
|
<version>3.1.5</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2023-10-05 05:23:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.cucumber</groupId>
|
|
|
|
<artifactId>gherkin</artifactId>
|
|
|
|
<version>5.1.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>3.9</version>
|
|
|
|
</dependency>
|
2023-10-03 09:17:23 +00:00
|
|
|
|
|
|
|
<!-- 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 -->
|
2023-10-05 05:23:50 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
<version>3.4</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.bonigarcia</groupId>
|
|
|
|
<artifactId>webdrivermanager</artifactId>
|
|
|
|
<version>5.5.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2023-10-03 09:17:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.mail</groupId>
|
|
|
|
<artifactId>javax.mail</artifactId>
|
|
|
|
<version>1.6.2</version>
|
|
|
|
</dependency>
|
2023-10-05 05:23:50 +00:00
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/com.github.ralfstuckert.pdfbox-layout/pdfbox2-layout -->
|
2023-10-03 09:17:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ralfstuckert.pdfbox-layout</groupId>
|
|
|
|
<artifactId>pdfbox2-layout</artifactId>
|
|
|
|
<version>0.8.6</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-10-18 09:24:40 +00:00
|
|
|
<!-- https://mvnrepository.com/artifact/commons-io/commons-io -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
<version>2.13.0</version>
|
|
|
|
</dependency>
|
|
|
|
|
2023-10-03 09:17:23 +00:00
|
|
|
|
|
|
|
<!-- 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>
|
|
|
|
|
2023-10-05 05:23:50 +00:00
|
|
|
<!--
|
|
|
|
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>
|
2023-10-03 09:17:23 +00:00
|
|
|
|
2023-10-05 05:23:50 +00:00
|
|
|
<!-- 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>
|
2023-10-03 09:17:23 +00:00
|
|
|
|
2023-10-18 09:24:40 +00:00
|
|
|
|
2023-10-05 05:23:50 +00:00
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/org.seleniumhq.selenium/selenium-java -->
|
2023-10-03 09:17:23 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.seleniumhq.selenium</groupId>
|
|
|
|
<artifactId>selenium-java</artifactId>
|
|
|
|
<version>3.141.59</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
2023-10-05 05:23:50 +00:00
|
|
|
<!--
|
|
|
|
https://mvnrepository.com/artifact/com.aventstack/extentreports-cucumber4-adapter -->
|
2023-10-03 09:17:23 +00:00
|
|
|
<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>
|
2023-10-05 05:23:50 +00:00
|
|
|
<!--
|
|
|
|
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>
|
|
|
|
|
2023-10-03 09:17:23 +00:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2023-10-05 05:23:50 +00:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
2023-10-09 07:23:14 +00:00
|
|
|
<version>3.0.0-M5</version> <!-- Use the appropriate version -->
|
2023-10-05 05:23:50 +00:00
|
|
|
<configuration>
|
|
|
|
<suiteXmlFiles>
|
2023-10-09 07:23:14 +00:00
|
|
|
<suiteXmlFile>testng.xml</suiteXmlFile>
|
2023-10-05 05:23:50 +00:00
|
|
|
</suiteXmlFiles>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2023-10-03 09:17:23 +00:00
|
|
|
</build>
|
|
|
|
</project>
|