Download cucumber-reporting-1.0.0.jar file

Introduction

You can download cucumber-reporting-1.0.0.jar in this page.

License

LGPL 2.1

Type List

cucumber-reporting-1.0.0.jar file has the following types.

HelloCucumber.class
META-INF/MANIFEST.MF
META-INF/maven/net.masterthought/cucumber-reporting/pom.properties
META-INF/maven/net.masterthought/cucumber-reporting/pom.xml
charts/flash_charts.zip
charts/js.zip
net.masterthought.cucumber.ConfigurationOptions.class
net.masterthought.cucumber.ReportBuilder.class
net.masterthought.cucumber.ReportInformation.class
net.masterthought.cucumber.ReportParser.class
net.masterthought.cucumber.VelocityContextMap.class
net.masterthought.cucumber.charts.FlashChartBuilder.class
net.masterthought.cucumber.charts.JsChartUtil.class
net.masterthought.cucumber.generators.AbstractPage.class
net.masterthought.cucumber.generators.ErrorPage.class
net.masterthought.cucumber.generators.FeatureOverviewPage.class
net.masterthought.cucumber.generators.FeatureReportPage.class
net.masterthought.cucumber.generators.StepOverviewPage.class
net.masterthought.cucumber.generators.TagOverviewPage.class
net.masterthought.cucumber.generators.TagReportPage.class
net.masterthought.cucumber.json.DocString.class
net.masterthought.cucumber.json.Embedded.class
net.masterthought.cucumber.json.Feature.class
net.masterthought.cucumber.json.Hook.class
net.masterthought.cucumber.json.Match.class
net.masterthought.cucumber.json.Result.class
net.masterthought.cucumber.json.Row.class
net.masterthought.cucumber.json.Scenario.class
net.masterthought.cucumber.json.Step.class
net.masterthought.cucumber.json.Tag.class
net.masterthought.cucumber.json.support.ResultsWithMatch.class
net.masterthought.cucumber.json.support.Status.class
net.masterthought.cucumber.json.support.StatusCounter.class
net.masterthought.cucumber.json.support.StepObject.class
net.masterthought.cucumber.json.support.TagObject.class
net.masterthought.cucumber.util.Util.class
styles/reporting.css
templates/footer.vm
templates/headers.html
templates/pages/errorPage.vm
templates/pages/featureOverview.vm
templates/pages/featureReport.vm
templates/pages/stepOverview.vm
templates/pages/tagOverview.vm
templates/pages/tagReport.vm
templates/summaryOverview.vm
templates/summaryReport.vm
templates/tableHeader.vm
templates/tableSorter.vm
templates/topMenu.vm
themes/blue.zip

Pom

cucumber-reporting-1.0.0.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/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <groupId>net.masterthought</groupId>
    <artifactId>cucumber-reporting</artifactId>
    <packaging>jar</packaging>
    <version>1.0.0</version>
    <name>cucumber-reporting</name>
    <url>https://github.com/damianszczepanik/cucumber-reporting</url>

    <properties>
        <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <project.build.resourceEncoding>UTF-8</project.build.resourceEncoding>
        <maven.compile.encoding>UTF-8</maven.compile.encoding>
        <powermock.version>1.6.3</powermock.version>
    </properties>

    <parent>
        <groupId>org.sonatype.oss</groupId>
        <artifactId>oss-parent</artifactId>
        <version>7</version>
    </parent>

    <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>

    <scm>
        <connection>scm:git:git@github.com:damianszczepanik/cucumber-reporting.git</connection>
        <developerConnection>scm:git:git@github.com:damianszczepanik/cucumber-reporting.git</developerConnection>
        <url>git@github.com:damianszczepanik/cucumber-reporting.git</url>
    </scm>

    <description>
        This project provides pretty html reports for Cucumber. It works by generating html from the cucumber json
        report formatter. So can be used anywhere a json report is generated. Current use is in the cucumber jenkins
        plugin and a maven mojo to generate the same report from mvn command line when running locally.
    </description>

    <licenses>
        <license>
            <name>LGPL 2.1</name>
            <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <id>kingsleyh</id>
            <name>Kingsley Hendrickse</name>
            <email>kingsley.hendrickse@gmail.com</email>
        </developer>
        <developer>
            <id>damianszczepanik</id>
            <name>Damian Szczepanik</name>
            <email>damianszczepanik@github</email>
        </developer>
    </developers>

    <profiles>
        <profile>
            <id>release-sign-artifacts</id>

            <activation>
                <property>
                    <!-- will be set by the release plugin upon performing 
                        mvn clean deploy -Prelease-sign-artifacts -->
                    <name>performRelease</name>
                    <value>true</value>
                </property>
            </activation>

            <properties>
                <gpg.keyname>0738FA8F</gpg.keyname>
                <release.username>Damian Szczepanik</release.username>
            </properties>

            <build>
                <plugins>
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.6</version>
                        <executions>
                            <execution>
                                <id>sign-artifacts</id>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>

        </profile>
    </profiles>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>3.3</version>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
                <version>2.4</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>2.10.3</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>

            <plugin>
                <groupId>org.jacoco</groupId>
                <artifactId>jacoco-maven-plugin</artifactId>
                <version>0.7.5.201505241946</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>prepare-agent</goal>
                        </goals>
                    </execution>
                    <execution>
                        <id>report</id>
                        <phase>test</phase>
                        <goals>
                            <goal>report</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>4.12</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>org.apache.velocity</groupId>
            <artifactId>velocity</artifactId>
            <version>1.7</version>
        </dependency>
        <dependency>
            <groupId>velocity-tools</groupId>
            <artifactId>velocity-tools</artifactId>
            <version>1.4</version>
        </dependency>
        <dependency>
            <groupId>joda-time</groupId>
            <artifactId>joda-time</artifactId>
            <version>2.9.1</version>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.4</version>
        </dependency>
        <dependency>
            <groupId>commons-io</groupId>
            <artifactId>commons-io</artifactId>
            <version>2.4</version>
        </dependency>
        <dependency>
            <groupId>net.lingala.zip4j</groupId>
            <artifactId>zip4j</artifactId>
            <version>1.3.2</version>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-gpg-plugin</artifactId>
            <version>1.6</version>
        </dependency>
        <dependency>
            <groupId>org.jsoup</groupId>
            <artifactId>jsoup</artifactId>
            <version>1.8.3</version>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <version>1.10.19</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-module-junit4</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.powermock</groupId>
            <artifactId>powermock-api-mockito</artifactId>
            <version>${powermock.version}</version>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-pro</artifactId>
            <version>1.0.16</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>net.masterthought</groupId>
   <artifactId>cucumber-reporting</artifactId>
   <version>1.0.0</version>
</dependency>

Download

If you think the following cucumber-reporting-1.0.0.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download cucumber-reporting-1.0.0.jar file




PreviousNext

Related