qualflare-testng
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.qualflare</groupId>
<artifactId>qualflare-testng</artifactId>
<version>0.1.0</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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.qualflare</groupId>
<artifactId>qualflare-testng</artifactId>
<version>0.1.0</version>
<packaging>jar</packaging>
<name>qualflare-testng</name>
<description>Native TestNG reporter for Qualflare</description>
<url>https://qualflare.com/testng-test-reporting/</url>
<licenses>
<license>
<name>Apache-2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
</license>
</licenses>
<developers>
<developer>
<name>Qualflare</name>
<email>ibrahim@qualflare.com</email>
<organization>Qualflare</organization>
<organizationUrl>https://qualflare.com</organizationUrl>
</developer>
</developers>
<scm>
<url>https://github.com/Qualflare/qualflare-testng</url>
<connection>scm:git:https://github.com/Qualflare/qualflare-testng.git</connection>
<developerConnection>scm:git:git@github.com:Qualflare/qualflare-testng.git</developerConnection>
</scm>
<properties>
<maven.compiler.release>11</maven.compiler.release>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<!-- The FLOOR, not the tested ceiling. wasRetried() must exist; it does from 7.4.0.
CI runs the fixture against 7.4.0 and 7.12.0. -->
<testng.version>7.12.0</testng.version>
<surefire.version>3.5.6</surefire.version>
</properties>
<dependencies>
<!-- provided: the published artifact must pull in nothing. A test reporter sits on
everyone's test classpath and must not put a second TestNG in front of theirs. -->
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>${testng.version}</version>
<scope>provided</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.4.2</version>
<configuration>
<archive>
<!-- Without this, getImplementationVersion() returns null and every report
claims 0.0.0-dev. That shipped once already in qualflare-junit5 0.1.0. -->
<manifest><addDefaultImplementationEntries>true</addDefaultImplementationEntries></manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<version>${surefire.version}</version>
</plugin>
</plugins>
</build>
<profiles>
<!-- Everything Central requires, kept off the everyday build: gpg wants a passphrase
and javadoc is slow, so `mvn test` should pay for neither. CI adds -Prelease. -->
<profile>
<id>release</id>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.1</version>
<executions>
<execution>
<id>attach-sources</id>
<goals><goal>jar-no-fork</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.11.2</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals><goal>jar</goal></goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.2.7</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals><goal>sign</goal></goals>
<configuration>
<!-- Read the passphrase from a property rather than a TTY: CI has no
terminal to prompt on, and gpg would hang instead of failing. -->
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.sonatype.central</groupId>
<artifactId>central-publishing-maven-plugin</artifactId>
<version>0.9.0</version>
<extensions>true</extensions>
<configuration>
<publishingServerId>central</publishingServerId>
<!-- FALSE on purpose. Central is immutable: a published version can never be
replaced, only superseded. Releases get eyeballed in the Portal before
going live. Flip this once the pipeline has earned it. -->
<autoPublish>false</autoPublish>
<waitUntil>validated</waitUntil>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
</project>