cucumber-core
Used in
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-core</artifactId> <version>7.21.1</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/maven-v4_0_0.xsd"> <parent> <artifactId>cucumber-jvm</artifactId> <groupId>io.cucumber</groupId> <version>7.21.1</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cucumber-core</artifactId> <name>Cucumber-JVM: Core</name> <build> <resources> <resource> <filtering>true</filtering> <directory>src/main/resources</directory> </resource> </resources> <plugins> <plugin> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-dependency-convergence</id> <goals> <goal>enforce</goal> </goals> <configuration> <rules> <dependencyConvergence /> </rules> </configuration> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <mainClass>io.cucumber.core.cli.Main</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <transformers> <transformer /> <transformer> <addHeader>false</addHeader> </transformer> </transformers> <artifactSet> <includes> <include>com.fasterxml.jackson.core:jackson-databind</include> <include>com.fasterxml.jackson.core:jackson-core</include> <include>com.fasterxml.jackson.core:jackson-annotations</include> <include>com.fasterxml.jackson.datatype:jackson-datatype-jdk8</include> </includes> </artifactSet> <relocations> <relocation> <pattern>com.fasterxml</pattern> <shadedPattern>io.cucumber.core.internal.com.fasterxml</shadedPattern> </relocation> </relocations> <filters> <filter> <artifact>com.fasterxml.jackson.core:jackson-databind</artifact> <excludes> <exclude>**/module-info.class</exclude> <exclude>**/module-info.class</exclude> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/services/**</exclude> <exclude>META-INF/versions/**</exclude> </excludes> </filter> <filter> <artifact>com.fasterxml.jackson.core:jackson-core</artifact> <excludes> <exclude>**/module-info.class</exclude> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/services/**</exclude> <exclude>META-INF/versions/**</exclude> </excludes> </filter> <filter> <artifact>com.fasterxml.jackson.core:jackson-annotations</artifact> <excludes> <exclude>**/module-info.class</exclude> <exclude>META-INF/MANIFEST.MF</exclude> </excludes> </filter> <filter> <artifact>com.fasterxml.jackson.datatype:jackson-datatype-jdk8</artifact> <excludes> <exclude>**/module-info.class</exclude> <exclude>META-INF/MANIFEST.MF</exclude> <exclude>META-INF/services/**</exclude> </excludes> </filter> </filters> </configuration> </execution> </executions> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-gherkin</artifactId> <version>7.21.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-gherkin-messages</artifactId> <version>7.21.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>messages</artifactId> <version>27.2.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>testng-xml-formatter</artifactId> <version>0.3.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>tag-expressions</artifactId> <version>6.1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-expressions</artifactId> <version>18.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>datatable</artifactId> <version>7.21.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-plugin</artifactId> <version>7.21.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>docstring</artifactId> <version>7.21.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>html-formatter</artifactId> <version>21.9.0</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>junit-xml-formatter</artifactId> <version>0.7.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>ci-environment</artifactId> <version>10.0.1</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.apiguardian</groupId> <artifactId>apiguardian-api</artifactId> <version>1.1.2</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-core</artifactId> <version>2.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jakarta.xml.bind-api</artifactId> <groupId>jakarta.xml.bind</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.xmlunit</groupId> <artifactId>xmlunit-matchers</artifactId> <version>2.10.0</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>hamcrest-core</artifactId> <groupId>org.hamcrest</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.jsoup</groupId> <artifactId>jsoup</artifactId> <version>1.18.3</version> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter</artifactId> <version>5.11.4</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-junit-jupiter</artifactId> <version>5.15.2</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>mockito-core</artifactId> <groupId>org.mockito</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-web</artifactId> <version>4.5.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>vertx-web-common</artifactId> <groupId>io.vertx</groupId> </exclusion> <exclusion> <artifactId>vertx-auth-common</artifactId> <groupId>io.vertx</groupId> </exclusion> <exclusion> <artifactId>vertx-bridge-common</artifactId> <groupId>io.vertx</groupId> </exclusion> <exclusion> <artifactId>vertx-core</artifactId> <groupId>io.vertx</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>io.vertx</groupId> <artifactId>vertx-junit5</artifactId> <version>4.5.12</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>vertx-core</artifactId> <groupId>io.vertx</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-params</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-engine</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> <exclusion> <artifactId>junit-jupiter-api</artifactId> <groupId>org.junit.jupiter</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.reactivestreams</groupId> <artifactId>reactive-streams</artifactId> <version>1.0.4</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> <version>3.0</version> <scope>test</scope> </dependency> <dependency> <groupId>org.skyscreamer</groupId> <artifactId>jsonassert</artifactId> <version>1.5.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>android-json</artifactId> <groupId>com.vaadin.external.google</groupId> </exclusion> </exclusions> </dependency> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-bom</artifactId> <version>${project.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>org.junit</groupId> <artifactId>junit-bom</artifactId> <version>${junit-jupiter.version}</version> <type>pom</type> <scope>import</scope> </dependency> <dependency> <groupId>com.fasterxml.jackson</groupId> <artifactId>jackson-bom</artifactId> <version>${jackson.version}</version> <type>pom</type> <scope>import</scope> </dependency> </dependencies> </dependencyManagement> <properties> <reactive-streams.version>1.0.4</reactive-streams.version> <vertx.version>4.5.12</vertx.version> <jackson.version>2.18.2</jackson.version> <hamcrest.version>3.0</hamcrest.version> <xmlunit.version>2.10.0</xmlunit.version> <hamcrest-json.version>0.2</hamcrest-json.version> <apiguardian-api.version>1.1.2</apiguardian-api.version> <jsoup.version>1.18.3</jsoup.version> <mockito.version>5.15.2</mockito.version> <project.Automatic-Module-Name>io.cucumber.core</project.Automatic-Module-Name> <junit-jupiter.version>5.11.4</junit-jupiter.version> </properties> </project>