cucumber-gherkin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>fr.redfroggy.test.bdd</groupId> <artifactId>cucumber-gherkin</artifactId> <version>1.1.7</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> <groupId>fr.redfroggy.test.bdd</groupId> <artifactId>cucumber-gherkin</artifactId> <version>1.1.7</version> <name>Cucumber Spring rest Api</name> <description>REST API tests with Spring, Cucumber and Gherkin</description> <url>https://github.com/spring-cucumber-rest-api</url> <organization> <name>RedFroggy</name> <url>http://www.redfroggy.fr</url> </organization> <developers> <developer> <id>mdesigaud</id> <name>Michael Desigaud</name> <email>michael.desigaud at redfroggy.fr</email> <organization>RedFroggy</organization> <organizationUrl>http://www.redfroggy.fr</organizationUrl> <roles> <role>Developer</role> </roles> </developer> </developers> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <parent> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-parent</artifactId> <version>2.1.5.RELEASE</version> </parent> <properties> <cucumber-version>6.9.1</cucumber-version> <jsonpath-version>2.5.0</jsonpath-version> <maven-gpg-plugin.version>1.6</maven-gpg-plugin.version> <nexus-staging-maven-plugin.version>1.6.8</nexus-staging-maven-plugin.version> <maven-javadoc-plugin.version>2.10.4</maven-javadoc-plugin.version> <git-commit-id-plugin.version>3.0.1</git-commit-id-plugin.version> <jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> <maven-source-plugin.version>2.4</maven-source-plugin.version> <jacoco-maven-plugin.version>0.8.6</jacoco-maven-plugin.version> <wiremock.version>2.18.0</wiremock.version> <assertj.version>3.6.2</assertj.version> <commons-io.version>2.8.0</commons-io.version> </properties> <!-- Define where the source code for this project lives --> <scm> <connection>scm:git:github.com/RedFroggy/spring-cucumber-rest-api.git</connection> <developerConnection>scm:git:https://github.com/RedFroggy/spring-cucumber-rest-api.git</developerConnection> <url>https://github.com/RedFroggy/spring-cucumber-rest-api</url> </scm> <repositories> <repository> <id>sonatype-oss</id> <name>Sonatype OSS</name> <url>https://oss.sonatype.org/content/repositories/snapshots/</url> </repository> </repositories> <distributionManagement> <snapshotRepository> <id>ossrh</id> <url>https://oss.sonatype.org/content/repositories/snapshots</url> </snapshotRepository> <repository> <id>ossrh</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <dependencies> <!-- Spring web --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> <!-- Cucumber java implementation --> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-junit</artifactId> <version>${cucumber-version}</version> <scope>test</scope> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-java</artifactId> <version>${cucumber-version}</version> </dependency> <dependency> <groupId>io.cucumber</groupId> <artifactId>cucumber-spring</artifactId> <version>${cucumber-version}</version> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> <version>4.5.6</version> </dependency> <!-- Json path library --> <dependency> <groupId>com.jayway.jsonpath</groupId> <artifactId>json-path</artifactId> <version>${jsonpath-version}</version> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> <version>${commons-io.version}</version> </dependency> <!-- Spring test --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> </dependency> <!-- Junit --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <!-- Assertj --> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> </dependency> <dependency> <groupId>com.github.tomakehurst</groupId> <artifactId>wiremock-standalone</artifactId> <version>${wiremock.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>${maven-gpg-plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <!-- We sign in the verify phase, which means it will happen before install and deploy (the last two phases) but not before earlier phases like test or package. --> <phase>verify</phase> <goals> <goal>sign</goal> </goals> <!-- If using gpg > 2.1 it is necessary for gpg to not try to use the pinentry programs however, it looks like Travis does not need this entry --> <configuration> <keyname>${gpg.keyname}</keyname> <passphraseServerId>${gpg.passphrase}</passphraseServerId> </configuration> </execution> </executions> </plugin> <plugin> <!-- Allow attaching Javadoc during releases --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven-javadoc-plugin.version}</version> <configuration> <!-- <javadocExecutable>${java.home}/bin/javadoc</javadocExecutable>--> <source>${maven.compiler.source}</source> <tags> <tag> <name>notnull</name> <placement>a</placement> <head>Not null</head> </tag> <tag> <name>default</name> <placement>a</placement> <head>Default:</head> </tag> </tags> </configuration> <executions> <!-- Compress Javadoc into JAR and include that JAR when deploying. --> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Include zipped source code in releases --> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>${maven-source-plugin.version}</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <!-- Automatically close and deploy from OSSRH --> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>${nexus-staging-maven-plugin.version}</version> <extensions>true</extensions> <configuration> <serverId>ossrh</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <!-- Release versions will be synced to Maven Central automatically. --> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <!-- This plugin is optional for projects deployed with maven-semantic-release This is mainly used to create a shaded jar with a specific version id. In the workflow at Conveyal, we deploy these generated jar files to s3. Note: this works in conjunction with the maven-shade-plugin --> <groupId>pl.project13.maven</groupId> <artifactId>git-commit-id-plugin</artifactId> <version>${git-commit-id-plugin.version}</version> <executions> <execution> <goals> <goal>revision</goal> </goals> </execution> </executions> <configuration> <dotGitDirectory>${project.basedir}/.git</dotGitDirectory> <gitDescribe> <tags>true</tags> </gitDescribe> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>${maven-surefire-plugin.version}</version> <configuration> <!-- Force alphabetical order to have a reproducible build --> <runOrder>alphabetical</runOrder> <reportsDirectory>${junit.utReportFolder}</reportsDirectory> </configuration> </plugin> <!-- This plugin calculates code coverage and generates a report during the test phase in maven. It is optional in the workflow of deploying with maven-semantic-release. --> <plugin> <groupId>org.jacoco</groupId> <artifactId>jacoco-maven-plugin</artifactId> <version>${jacoco-maven-plugin.version}</version> <executions> <execution> <goals> <goal>prepare-agent</goal> </goals> </execution> <execution> <id>report</id> <phase>test</phase> <goals> <goal>report</goal> </goals> <configuration> <outputDirectory>${project.build.directory}/jacoco/test</outputDirectory> </configuration> </execution> <execution> <id>jacoco-check</id> <phase>test</phase> <goals> <goal>check</goal> </goals> <configuration> <rules> <rule> <element>CLASS</element> <limits> <limit> <counter>LINE</counter> <value>COVEREDRATIO</value> <minimum>90%</minimum> </limit> <limit> <counter>BRANCH</counter> <value>COVEREDRATIO</value> <minimum>70%</minimum> </limit> </limits> </rule> </rules> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>