cucumber2junit-maven-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.carousell</groupId> <artifactId>cucumber2junit-maven-plugin</artifactId> <version>1.5.2</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> <groupId>io.github.carousell</groupId> <artifactId>cucumber2junit-maven-plugin</artifactId> <version>1.5.2</version> <name>JUnit code generator for Cucumber tests</name> <description>Generates plain JUnit tests from Gherkin feature files. This is useful when you want to execute Cucumber tests in an environment which does not allow custom JUnit runners, e.g. the AWS Device Farm.</description> <packaging>maven-plugin</packaging> <developers> <developer> <name>Martin Schneider</name> <email>mart.schneider@gmail.com</email> </developer> </developers> <url>https://carousell.github.io/cucumber2junit</url> <scm> <url>https://github.com/carousell/cucumber2junit</url> <connection>scm:git:git://github.com/carousell/cucumber2junit.git</connection> </scm> <ciManagement> <system>Travis CI</system> <url>https://travis-ci.org/carousell/https://github.com/martinschneider/cucumber2junit/issues</url> </ciManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/carousell/cucumber2junit/issues</url> </issueManagement> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> <comments>A business-friendly OSS license</comments> </license> </licenses> <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> <properties> <velocity.version>1.7</velocity.version> <velocity.tools.version>2.0</velocity.tools.version> <assertj.version>3.9.1</assertj.version> <guava.version>25.0-jre</guava.version> <junit.version>4.12</junit.version> <slf4j.version>1.7.25</slf4j.version> <aws.sdk.version>1.11.360</aws.sdk.version> <maven.plugin.api.version>3.5.3</maven.plugin.api.version> <maven.plugin.plugin.version>3.5.1</maven.plugin.plugin.version> <maven.plugin.annotations.version>3.5.1</maven.plugin.annotations.version> <maven.project.version>3.0-alpha-2</maven.project.version> <maven.gpg.plugin.version>1.6</maven.gpg.plugin.version> <maven.source.plugin.version>3.0.1</maven.source.plugin.version> <maven.javadoc.plugin.version>3.0.0</maven.javadoc.plugin.version> <maven.site.plugin.version>3.7</maven.site.plugin.version> <maven.checkstyle.plugin.version>3.0.0</maven.checkstyle.plugin.version> <nexus.staging.maven.plugin.version>1.6.8</nexus.staging.maven.plugin.version> <cobertura.maven.plugin.version>2.7</cobertura.maven.plugin.version> <maven.surefire.report.plugin.version>2.21.0</maven.surefire.report.plugin.version> <maven.project.info.reports.plugin>2.9</maven.project.info.reports.plugin> <github.site.maven.plugin.version>0.12</github.site.maven.plugin.version> <sonarqube.maven.plugin.version>0.2.2</sonarqube.maven.plugin.version> <doxia.version>1.8</doxia.version> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <maven.compiler.source>1.8</maven.compiler.source> <maven.compiler.target>1.8</maven.compiler.target> <github.global.server>github</github.global.server> <github.global.oauth2Token>${env.GITHUB_OAUTH_TOKEN}</github.global.oauth2Token> </properties> <dependencies> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity</artifactId> <version>${velocity.version}</version> </dependency> <dependency> <groupId>org.apache.velocity</groupId> <artifactId>velocity-tools</artifactId> <version>${velocity.tools.version}</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>${guava.version}</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>${junit.version}</version> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <version>${assertj.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-simple</artifactId> <version>${slf4j.version}</version> </dependency> <dependency> <groupId>com.amazonaws</groupId> <artifactId>aws-java-sdk-dynamodb</artifactId> <version>${aws.sdk.version}</version> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-plugin-api</artifactId> <version>${maven.plugin.api.version}</version> </dependency> <dependency> <groupId>org.apache.maven.plugin-tools</groupId> <artifactId>maven-plugin-annotations</artifactId> <version>${maven.plugin.annotations.version}</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.apache.maven</groupId> <artifactId>maven-project</artifactId> <version>${maven.project.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-plugin-plugin</artifactId> <version>${maven.plugin.plugin.version}</version> </plugin> <plugin> <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> <autoReleaseAfterClose>true</autoReleaseAfterClose> </configuration> </plugin> <plugin> <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> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>${maven.javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadocs</id> <goals> <goal>jar</goal> </goals> </execution> </executions> <dependencies></dependencies> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-site-plugin</artifactId> <version>${maven.site.plugin.version}</version> <dependencies> <dependency> <groupId>org.apache.maven.doxia</groupId> <artifactId>doxia-module-markdown</artifactId> <version>${doxia.version}</version> </dependency> </dependencies> </plugin> <plugin> <groupId>com.github.github</groupId> <artifactId>site-maven-plugin</artifactId> <version>${github.site.maven.plugin.version}</version> <configuration> <message>Creating site for ${project.version}</message> </configuration> <executions> <execution> <goals> <goal>site</goal> </goals> <phase>site</phase> </execution> </executions> </plugin> </plugins> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>${maven.checkstyle.plugin.version}</version> <configuration> <configLocation>google_checks.xml</configLocation> <failsOnError>true</failsOnError> <failOnViolation>false</failOnViolation> </configuration> <reportSets> <reportSet> <reports> <report>checkstyle</report> </reports> </reportSet> </reportSets> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-project-info-reports-plugin</artifactId> <version>${maven.project.info.reports.plugin}</version> <configuration> <dependencyLocationsEnabled>false</dependencyLocationsEnabled> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>${maven.surefire.report.plugin.version}</version> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>cobertura-maven-plugin</artifactId> <version>${cobertura.maven.plugin.version}</version> <configuration> <formats> <format>html</format> </formats> </configuration> </plugin> <plugin> <groupId>nl.demon.shadowland.maven.plugins</groupId> <artifactId>sonarqube-maven-report</artifactId> <version>${sonarqube.maven.plugin.version}</version> <configuration> <sonarHostURL>https://sonarcloud.io/</sonarHostURL> </configuration> </plugin> </plugins> </reporting> <profiles> <profile> <id>sign</id> <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> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>