You can download cucumber-reports-0.0.11.jar in this page.
The Apache Software License, Version 2.0
cucumber-reports-0.0.11.jar file has the following types.
META-INF/MANIFEST.MF META-INF/maven/com.github.mkolisnyk/cucumber-reports/pom.properties META-INF/maven/com.github.mkolisnyk/cucumber-reports/pom.xml chart.html com.github.mkolisnyk.cucumber.reporting.CucumberCoverageOverview.class com.github.mkolisnyk.cucumber.reporting.CucumberDetailedResults.class com.github.mkolisnyk.cucumber.reporting.CucumberResultsCommon.class com.github.mkolisnyk.cucumber.reporting.CucumberResultsOverview.class com.github.mkolisnyk.cucumber.reporting.CucumberUsageReporting.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberBeforeAfterResult.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberFeatureResult.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberMatch.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberResult.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberScenarioResult.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberStepResult.class com.github.mkolisnyk.cucumber.reporting.types.result.CucumberTagResults.class com.github.mkolisnyk.cucumber.reporting.types.usage.CucumberAggregatedDuration.class com.github.mkolisnyk.cucumber.reporting.types.usage.CucumberStep.class com.github.mkolisnyk.cucumber.reporting.types.usage.CucumberStepDuration.class com.github.mkolisnyk.cucumber.reporting.types.usage.CucumberStepSource.class com.github.mkolisnyk.cucumber.reporting.utils.helpers.MapUtils.class com.github.mkolisnyk.cucumber.runner.ExtendedCucumber.class com.github.mkolisnyk.cucumber.runner.ExtendedCucumberOptions.class com.github.mkolisnyk.cucumber.runner.ExtendedExamplesRunner.class com.github.mkolisnyk.cucumber.runner.ExtendedExecutionUnitRunner.class com.github.mkolisnyk.cucumber.runner.ExtendedFeatureRunner.class com.github.mkolisnyk.cucumber.runner.ExtendedRuntimeOptions.class com.github.mkolisnyk.cucumber.runner.ExtendedScenarioOutlineRunner.class feature-overview-tmpl.html results-report-tmpl.html usage-base-graph-tmpl.html usage-na-graph-tmpl.html
cucumber-reports-0.0.11.pom file content.
<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.github.mkolisnyk</groupId> <artifactId>parent-pom</artifactId> <version>0.0.2</version> </parent> <artifactId>cucumber-reports</artifactId> <version>0.0.11</version> <name>Cucumber Reports</name> <description>Library generating different Cucumber reports</description> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <developers> <developer> <id>mkolisnyk</id> <name>mkolisnyk</name> <email>kolesnik.nickolay@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git@github.com:mkolisnyk/cucumber-reports.git</connection> <developerConnection>scm:git:git@github.com:mkolisnyk/cucumber-reports.git</developerConnection> <url>https://github.com/mkolisnyk/cucumber-reports.git</url> <tag>HEAD</tag> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <fail.coverage>false</fail.coverage> <fail.pmd>false</fail.pmd> </properties> <build> <resources> <resource> <directory>${project.basedir}/src/main/resources</directory> </resource> </resources> <testResources> <testResource> <directory>${project.basedir}/src/test/resources</directory> </testResource> <testResource> <directory>${project.basedir}/src/main/resources</directory> </testResource> </testResources> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.3.2</version> <configuration> <archive> <manifest> <addClasspath>true</addClasspath> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <classpathLayoutType>repository</classpathLayoutType> <addExtensions>true</addExtensions> <mainClass>${java.main.class}</mainClass> </manifest> </archive> </configuration> </plugin> <plugin> <groupId>org.sonatype.plugins</groupId> <artifactId>nexus-staging-maven-plugin</artifactId> <version>1.1</version> <executions> <execution> <id>default-deploy</id> <phase>deploy</phase> <goals> <goal>deploy</goal> </goals> </execution> </executions> <configuration> <serverId>sonatype-nexus-staging</serverId> <nexusUrl>https://oss.sonatype.org/</nexusUrl> <skipLocalStaging>true</skipLocalStaging> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>2.5.2</version> <configuration> <encoding>${project.build.sourceEncoding}</encoding> <failOnError>false</failOnError> <excludeFilterFile>findBugsExclude.xml</excludeFilterFile> <skip>true</skip> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-checkstyle-plugin</artifactId> <version>2.13</version> <configuration> <configLocation>./sun_checks.xml</configLocation> <suppressionsLocation>./checkstyle-suppressions.xml</suppressionsLocation> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>com.cedarsoftware</groupId> <artifactId>json-io</artifactId> <version>2.2.31</version> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-picocontainer</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>info.cukes</groupId> <artifactId>cucumber-junit</artifactId> <version>1.2.2</version> </dependency> <dependency> <groupId>net.sourceforge.htmlunit</groupId> <artifactId>htmlunit</artifactId> <version>2.16</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> </dependency> <dependency> <groupId>org.xhtmlrenderer</groupId> <artifactId>flying-saucer-pdf</artifactId> <version>9.0.7</version> <exclusions> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcprov-jdk14</artifactId> </exclusion> <exclusion> <groupId>org.bouncycastle</groupId> <artifactId>bcmail-jdk14</artifactId> </exclusion> </exclusions> </dependency> </dependencies> </project>
<dependency> <groupId>com.github.mkolisnyk</groupId> <artifactId>cucumber-reports</artifactId> <version>0.0.11</version> </dependency>
If you think the following cucumber-reports-0.0.11.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.
Download cucumber-reports-0.0.11.jar file