Download cucumber-junit-1.2.4.jar file

Introduction

You can download cucumber-junit-1.2.4.jar in this page.

License

Open Source

Type List

cucumber-junit-1.2.4.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/info.cukes/cucumber-junit/pom.properties
META-INF/maven/info.cukes/cucumber-junit/pom.xml
cucumber.api.junit.Cucumber.class
cucumber.runtime.junit.Assertions.class
cucumber.runtime.junit.ExamplesRunner.class
cucumber.runtime.junit.ExecutionUnitRunner.class
cucumber.runtime.junit.FeatureRunner.class
cucumber.runtime.junit.JUnitReporter.class
cucumber.runtime.junit.SanityChecker.class
cucumber.runtime.junit.ScenarioOutlineRunner.class

Pom

cucumber-junit-1.2.4.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>info.cukes</groupId>
        <artifactId>cucumber-jvm</artifactId>
        <relativePath>../pom.xml</relativePath>
        <version>1.2.4</version>
    </parent>

    <artifactId>cucumber-junit</artifactId>
    <packaging>jar</packaging>
    <name>Cucumber-JVM: JUnit</name>

    <dependencies>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-core</artifactId>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-jvm-deps</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>gherkin</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>

        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>net.sourceforge.cobertura</groupId>
            <artifactId>cobertura</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
                    </archive>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <extensions>true</extensions>
                <configuration>
                    <instructions>
                        <Bundle-Description />
                        <Export-Package>cucumber.*</Export-Package>
                    </instructions>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>info.cukes</groupId>
   <artifactId>cucumber-junit</artifactId>
   <version>1.2.4</version>
</dependency>

Download

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



Download cucumber-junit-1.2.4.jar file




PreviousNext

Related