flaky-run-reporter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.quarkus.qe</groupId> <artifactId>flaky-run-reporter</artifactId> <version>0.1.6</version> </dependency>
<?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>io.quarkus.qe</groupId> <artifactId>flaky-run-reporter</artifactId> <name>Flaky Run Reporter - Maven Extension</name> <version>0.1.6</version> <packaging>jar</packaging> <description>Creates report on flaky tests detected during SureFire and FailSafe test runs</description> <properties> <maven.compiler.source>17</maven.compiler.source> <maven.compiler.target>17</maven.compiler.target> <source-plugin.version>3.3.1</source-plugin.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven-core.version>3.9.9</maven-core.version> <maven-surefire-report-parser.version>3.5.3</maven-surefire-report-parser.version> <jackson-databind.version>2.19.0</jackson-databind.version> <formatter-maven-plugin.version>2.26.0</formatter-maven-plugin.version> <sisu-maven-plugin.version>0.3.5</sisu-maven-plugin.version> <!-- Maven Enforcer Settings --> <maven.min.version>3.9.6</maven.min.version> <maven-enforcer-plugin.version>3.5.0</maven-enforcer-plugin.version> <maven-enforcer-plugin.phase>validate</maven-enforcer-plugin.phase> <!-- Format Settings --> <src.format.goal>format</src.format.goal> <!-- Test Settings --> <junit.jupiter.version>5.12.2</junit.jupiter.version> <maven-invoker.version>3.3.0</maven-invoker.version> <maven.surefire.version>3.5.3</maven.surefire.version> </properties> <dependencies> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-core</artifactId> <version>${maven-core.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> <version>${jackson-databind.version}</version> </dependency> <dependency> <groupId>org.apache.maven.surefire</groupId> <artifactId>surefire-report-parser</artifactId> <version>${maven-surefire-report-parser.version}</version> </dependency> <dependency> <groupId>org.apache.maven.shared</groupId> <artifactId>maven-invoker</artifactId> <version>${maven-invoker.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>${junit.jupiter.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <!-- Check for the minimum Maven version. Runs during the validate phase. --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>${maven-enforcer-plugin.version}</version> <executions> <execution> <id>enforce</id> <phase>${maven-enforcer-plugin.phase}</phase> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <requireMavenVersion> <message>To use this project, Maven ${maven.min.version} (or greater) is required. Please install it. </message> <version>${maven.min.version}</version> </requireMavenVersion> </rules> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.eclipse.sisu</groupId> <artifactId>sisu-maven-plugin</artifactId> <version>${sisu-maven-plugin.version}</version> <executions> <execution> <id>generate-index</id> <goals> <goal>main-index</goal> <goal>test-index</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>net.revelc.code.formatter</groupId> <artifactId>formatter-maven-plugin</artifactId> <version>${formatter-maven-plugin.version}</version> <executions> <execution> <goals> <goal>${src.format.goal}</goal> </goals> </execution> </executions> <configuration> <lineEnding>LF</lineEnding> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven.surefire.version}</version> <configuration> <systemPropertyVariables> <!-- so that we test same setup (deps) and self in the Maven Invoker test --> <junit.jupiter.version>${junit.jupiter.version}</junit.jupiter.version> <maven.surefire.version>${maven.surefire.version}</maven.surefire.version> <flaky-run-reporter.version>${project.version}</flaky-run-reporter.version> </systemPropertyVariables> </configuration> </plugin> </plugins> </build> <profiles> <profile> <id>release</id> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>3.11.2</version> <executions> <execution> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-release-plugin</artifactId> <version>3.1.1</version> <configuration> <autoVersionSubmodules>true</autoVersionSubmodules> <tagNameFormat>@{project.version}</tagNameFormat> <pushChanges>false</pushChanges> <localCheckout>true</localCheckout> <remoteTagging>false</remoteTagging> <arguments>-DskipTests=true</arguments> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>3.2.7</version> <configuration> <gpgArguments> <arg>--pinentry-mode</arg> <arg>loopback</arg> </gpgArguments> </configuration> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.sonatype.central</groupId> <artifactId>central-publishing-maven-plugin</artifactId> <version>0.7.0</version> <extensions>true</extensions> <configuration> <publishingServerId>central</publishingServerId> <autoPublish>true</autoPublish> </configuration> </plugin> </plugins> </build> </profile> </profiles> <licenses> <license> <name>The Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>quarkus-qe</id> <name>Quarkus QE</name> <organization>Quarkus QE</organization> <url>https://github.com/quarkus-qe</url> </developer> </developers> <scm> <connection>scm:git:git@github.com:quarkus-qe/flaky-run-reporter.git</connection> <developerConnection>scm:git:git@github.com:quarkus-qe/flaky-run-reporter.git</developerConnection> <url>https://github.com/quarkus-qe/flaky-run-reporter</url> <tag>0.1.6</tag> </scm> <url>https://github.com/quarkus-qe/flaky-run-reporter/</url> <issueManagement> <system>GitHub</system> <url>https://github.com/quarkus-qe/flaky-run-reporter/issues</url> </issueManagement> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://s01.oss.sonatype.org/content/repositories/snapshots/</url> </snapshotRepository> <repository> <id>oss.sonatype</id> <url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> </project>