hw4: finalize selenoid and ansible workflow with citrus tests
This commit is contained in:
75
citrus-tests/pom.xml
Normal file
75
citrus-tests/pom.xml
Normal file
@@ -0,0 +1,75 @@
|
||||
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>ru.kovbasa</groupId>
|
||||
<artifactId>citrus-tests</artifactId>
|
||||
<version>1.0-SNAPSHOT</version>
|
||||
<name>citrus-tests</name>
|
||||
|
||||
<properties>
|
||||
<maven.compiler.release>21</maven.compiler.release>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
|
||||
<citrus.version>3.2.1</citrus.version>
|
||||
<surefire.version>2.22.2</surefire.version>
|
||||
<log4j2.version>2.25.1</log4j2.version>
|
||||
|
||||
<petstore.base.url>https://petstore.swagger.io</petstore.base.url>
|
||||
<petstore.base.path>/v2</petstore.base.path>
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
<dependency>
|
||||
<groupId>com.consol.citrus</groupId>
|
||||
<artifactId>citrus-core</artifactId>
|
||||
<version>${citrus.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.consol.citrus</groupId>
|
||||
<artifactId>citrus-http</artifactId>
|
||||
<version>${citrus.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.consol.citrus</groupId>
|
||||
<artifactId>citrus-testng</artifactId>
|
||||
<version>${citrus.version}</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
<artifactId>log4j-slf4j-impl</artifactId>
|
||||
<version>${log4j2.version}</version>
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
<version>3.15.0</version>
|
||||
<configuration>
|
||||
<release>${maven.compiler.release}</release>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-surefire-plugin</artifactId>
|
||||
<version>${surefire.version}</version>
|
||||
<configuration>
|
||||
<systemPropertyVariables>
|
||||
<petstore.base.url>${petstore.base.url}</petstore.base.url>
|
||||
<petstore.base.path>${petstore.base.path}</petstore.base.path>
|
||||
</systemPropertyVariables>
|
||||
</configuration>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</build>
|
||||
|
||||
</project>
|
||||
Reference in New Issue
Block a user