<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>io.github.mfaisalkhatri</groupId> <artifactId>servicenow-appium-testing</artifactId> <version>1.0-SNAPSHOT</version> <packaging>jar</packaging> <name>servicenow-appium-testing</name> <url>http://maven.apache.org</url> <properties> <appium-java-client-version>8.3.0</appium-java-client-version> <testng-version>7.7.1</testng-version> <lombok-version>1.18.26</lombok-version> <maven.compiler.source>11</maven.compiler.source> <maven.compiler.target>11</maven.compiler.target> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.version>3.10.1</maven.compiler.version> <surefire-version>3.0.0-M8</surefire-version> <java.release.version>11</java.release.version> <maven.source.encoding>UTF-8</maven.source.encoding> <suite-xml>testng.xml</suite-xml> <argLine>-Dfile.encoding=UTF-8 -Xdebug -Xnoagent</argLine> </properties> <dependencies> <!-- https://mvnrepository.com/artifact/org.testng/testng --> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng-version}</version> <scope>test</scope> </dependency> <!-- https://mvnrepository.com/artifact/io.appium/java-client --> <dependency> <groupId>io.appium</groupId> <artifactId>java-client</artifactId> <version>${appium-java-client-version}</version> </dependency> <!-- https://mvnrepository.com/artifact/org.projectlombok/lombok --> <dependency> <groupId>org.projectlombok</groupId> <artifactId>lombok</artifactId> <version>${lombok-version}</version> <scope>provided</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>${maven.compiler.version}</version> <configuration> <release>${java.release.version}</release> <encoding>${maven.source.encoding}</encoding> <forceJavacCompilerUse>true</forceJavacCompilerUse> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${surefire-version}</version> <executions> <execution> <goals> <goal>test</goal> </goals> </execution> </executions> <configuration> <useSystemClassLoader>false</useSystemClassLoader> <properties> <property> <name>usedefaultlisteners</name> <value>false</value> </property> </properties> <suiteXmlFiles> <suiteXmlFile>${suite-xml}</suiteXmlFile> </suiteXmlFiles> <argLine>${argLine}</argLine> </configuration> </plugin> </plugins> </build> </project>