Created
January 11, 2026 15:27
-
-
Save borodicht/ef5cd2fd85ac47be5cf97fb993a4b6aa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?xml version="1.0" encoding="UTF-8"?> | |
| <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>org.example</groupId> | |
| <artifactId>Demo2</artifactId> | |
| <version>1.0-SNAPSHOT</version> | |
| <properties> | |
| <maven.compiler.release>17</maven.compiler.release> | |
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
| <testng.version>7.11.0</testng.version> | |
| <selenium.version>4.32.0</selenium.version> | |
| <allure.version>2.27.0</allure.version> | |
| <checkstyle.version>3.4.0</checkstyle.version> | |
| <spotless.version>2.43.0</spotless.version> | |
| </properties> | |
| <dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>io.qameta.allure</groupId> | |
| <artifactId>allure-bom</artifactId> | |
| <version>${allure.version}</version> | |
| <type>pom</type> | |
| <scope>import</scope> | |
| </dependency> | |
| </dependencies> | |
| </dependencyManagement> | |
| <dependencies> | |
| <dependency> | |
| <groupId>org.seleniumhq.selenium</groupId> | |
| <artifactId>selenium-java</artifactId> | |
| <version>${selenium.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>org.testng</groupId> | |
| <artifactId>testng</artifactId> | |
| <version>${testng.version}</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>io.qameta.allure</groupId> | |
| <artifactId>allure-testng</artifactId> | |
| <scope>test</scope> | |
| </dependency> | |
| <dependency> | |
| <groupId>com.fasterxml.jackson.core</groupId> | |
| <artifactId>jackson-databind</artifactId> | |
| <version>2.17.2</version> | |
| </dependency> | |
| </dependencies> | |
| <build> | |
| <plugins> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-compiler-plugin</artifactId> | |
| <version>3.13.0</version> | |
| <configuration> | |
| <release>${maven.compiler.release}</release> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-surefire-plugin</artifactId> | |
| <version>3.3.1</version> | |
| <configuration> | |
| <useModulePath>false</useModulePath> | |
| <properties> | |
| <property> | |
| <name>listener</name> | |
| <value>io.qameta.allure.testng.AllureTestNg</value> | |
| </property> | |
| </properties> | |
| </configuration> | |
| </plugin> | |
| <plugin> | |
| <groupId>io.qameta.allure</groupId> | |
| <artifactId>allure-maven</artifactId> | |
| <version>2.12.0</version> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.apache.maven.plugins</groupId> | |
| <artifactId>maven-checkstyle-plugin</artifactId> | |
| <version>${checkstyle.version}</version> | |
| <configuration> | |
| <configLocation>checkstyle.xml</configLocation> | |
| <consoleOutput>true</consoleOutput> | |
| <failsOnError>true</failsOnError> | |
| <includeTestSourceDirectory>true</includeTestSourceDirectory> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <phase>verify</phase> | |
| <goals> | |
| <goal>check</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>com.diffplug.spotless</groupId> | |
| <artifactId>spotless-maven-plugin</artifactId> | |
| <version>${spotless.version}</version> | |
| <configuration> | |
| <java> | |
| <googleJavaFormat/> | |
| <removeUnusedImports/> | |
| </java> | |
| </configuration> | |
| <executions> | |
| <execution> | |
| <phase>verify</phase> | |
| <goals> | |
| <goal>check</goal> | |
| </goals> | |
| </execution> | |
| </executions> | |
| </plugin> | |
| <plugin> | |
| <groupId>org.codehaus.mojo</groupId> | |
| <artifactId>exec-maven-plugin</artifactId> | |
| <version>3.3.0</version> | |
| </plugin> | |
| </plugins> | |
| </build> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment