cucumber-junit
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-junit</artifactId> <version>5.0.0</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> <parent> <groupId>io.cucumber</groupId> <artifactId>cucumber-jvm</artifactId> <version>5.0.0</version> </parent> <artifactId>cucumber-junit</artifactId> <packaging>jar</packaging> <name>Cucumber-JVM: JUnit</name> <dependencies> <dependency> <groupId>org.apiguardian</groupId> <artifactId>apiguardian-api</artifactId> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-core</artifactId> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.vintage</groupId> <artifactId>junit-vintage-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <project.Automatic-Module-Name>io.cucumber.junit</project.Automatic-Module-Name> </properties> </project>