testng-error-notifier
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>io.github.solf</groupId>
<artifactId>testng-error-notifier</artifactId>
<version>1.0.1</version>
</dependency><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.github.solf</groupId>
<artifactId>testng-error-notifier</artifactId>
<version>1.0.1</version>
<packaging>jar</packaging>
<name>testng-error-notifier</name>
<description>Dumps TestNG failures notifications immediately when they happen into System.err and slf4j (if available) under 'testng-error-notifier' logger</description>
<url>https://github.com/solf/testng-error-notifier</url>
<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>solf</id>
<name>Sergey Olefir</name>
<email>solf.opensource@gmail.com</email>
<organization>none</organization>
<organizationUrl>https://github.com/solf/</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:https://github.com/solf/testng-error-notifier.git</connection>
<url>https://github.com/solf/testng-error-notifier.git</url>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
</distributionManagement>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.4</version>
<optional>true</optional> <!-- let's not propagate our dependencies -->
</dependency>
<dependency>
<groupId>org.kohsuke.metainf-services</groupId>
<artifactId>metainf-services</artifactId>
<version>1.8</version>
<optional>true</optional> <!-- let's not propagate our dependencies -->
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.32</version>
<optional>true</optional> <!-- let's not propagate our dependencies -->
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.0</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
<plugin>
<!-- Release to Sonatype -->
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.7</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<!-- Controls whether non-SNAPSHOT versions are automatically released to Maven Central -->
<!-- If not auto-releasing, go to https://s01.oss.sonatype.org/#stagingRepositories -->
<autoReleaseAfterClose>false</autoReleaseAfterClose>
</configuration>
</plugin>
<plugin>
<!-- GPG-sign artifacts (required for Maven Central) -->
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.5</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.2.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>2.9</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
<configuration>
<!-- Disables annoying Javadoc validation in 1.8 -->
<additionalparam>-Xdoclint:none</additionalparam>
<defaultVersion>${project.version}</defaultVersion>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
</project>