ReportPortal JUnit5 Integration
The repository contains JUnit5 Extension for ReportPortal integration.
<repositories>
<repository>
<id>bintray</id>
<url>http://dl.bintray.com/epam/reportportal</url>
</repository>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.epam.reportportal</groupId>
<artifactId>agent-java-junit5</artifactId>
<version>$LATEST_VERSION</version>
</dependency>
<build>
<plugins>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>2.22.0</version>
<configuration>
<properties>
<configurationParameters>
junit.jupiter.extensions.autodetection.enabled = true
</configurationParameters>
</properties>
</configuration>
</plugin>
</plugins>
</build>
repositories {
jcenter()
mavenLocal()
maven { url "http://dl.bintray.com/epam/reportportal" }
maven { url "https://jitpack.io" }
}
testCompile 'com.epam.reportportal:agent-java-junit5:$LATEST_VERSION'
test {
useJUnitPlatform()
systemProperty 'junit.jupiter.extensions.autodetection.enabled', true
}
Licensed under the Apache 2.0 license (see the LICENSE.md file).