xteps2-allure
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.plugatar.xteps2</groupId> <artifactId>xteps2-allure</artifactId> <version>1.1</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- Copyright 2023 Evgenii Plugatar Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. --> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.plugatar.xteps2</groupId> <artifactId>parent</artifactId> <version>1.1</version> </parent> <groupId>com.plugatar.xteps2</groupId> <artifactId>xteps2-allure</artifactId> <version>1.1</version> <name>xteps2-allure</name> <description>Module xteps2-allure of Xteps2 framework</description> <url>https://github.com/evpl/xteps2</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>evpl</id> <name>Evgenii Plugatar</name> <email>evpl.dev@gmail.com</email> <url>https://plugatar.com</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:evpl/xteps2.git</connection> <developerConnection>scm:git:git@github.com:evpl/xteps2.git</developerConnection> <url>https://github.com/evpl/xteps2</url> </scm> <issueManagement> <system>Github</system> <url>https://github.com/evpl/xteps2/issues</url> </issueManagement> <dependencies> <dependency> <groupId>com.plugatar.xteps2</groupId> <artifactId>xteps2</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-java-commons</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.qameta.allure</groupId> <artifactId>allure-junit5</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>