chutney-junit-engine
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-junit-engine</artifactId>
<version>2.9.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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-junit-parent</artifactId>
<version>2.9.0</version>
</parent>
<artifactId>chutney-junit-engine</artifactId>
<dependencies>
<dependency>
<groupId>com.chutneytesting</groupId>
<artifactId>chutney-junit-api</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.chutneytesting</groupId>
<artifactId>glacio-adapter</artifactId>
</dependency>
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-engine</artifactId>
</dependency>
<!-- Test -->
<dependency>
<groupId>org.junit.platform</groupId>
<artifactId>junit-platform-testkit</artifactId>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>