Download jbehave-spring-3.9.jar file

Introduction

You can download jbehave-spring-3.9.jar in this page.

License

Open Source

Type List

jbehave-spring-3.9.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/org.jbehave/jbehave-spring/pom.properties
META-INF/maven/org.jbehave/jbehave-spring/pom.xml
org.jbehave.core.annotations.spring.UsingSpring.class
org.jbehave.core.configuration.spring.SpringAnnotationBuilder.class
org.jbehave.core.configuration.spring.SpringParameterControls.class
org.jbehave.core.configuration.spring.SpringStoryControls.class
org.jbehave.core.configuration.spring.SpringStoryReporterBuilder.class
org.jbehave.core.junit.spring.SpringAnnotatedEmbedderRunner.class
org.jbehave.core.junit.spring.SpringAnnotatedPathRunner.class
org.jbehave.core.steps.spring.SpringApplicationContextFactory.class
org.jbehave.core.steps.spring.SpringStepsFactory.class

Pom

jbehave-spring-3.9.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>
    <parent>
        <groupId>org.jbehave</groupId>
        <artifactId>jbehave</artifactId>
        <version>3.9</version>
    </parent>
    <artifactId>jbehave-spring</artifactId>
    <name>JBehave Spring</name>
    <description>Extension of JBehave Core that supports Spring dependency injection</description>

    <properties>
        <spring.version>3.1.1.RELEASE</spring.version>
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.jbehave</groupId>
            <artifactId>jbehave-core</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
            <version>${spring.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-test</artifactId>
            <version>${spring.version}</version>
            <exclusions>
                <exclusion>
                    <groupId>junit</groupId>
                    <artifactId>junit</artifactId>
                </exclusion>
            </exclusions>
        </dependency>  
        <!-- CGLib is required when using Spring's Annotation Configuration -->      
        <dependency>
            <groupId>cglib</groupId>
            <artifactId>cglib</artifactId>
            <version>2.2.2</version>
            <optional>true</optional>
        </dependency>
    </dependencies>

</project>

POM Entry

<dependency>
   <groupId>org.jbehave</groupId>
   <artifactId>jbehave-spring</artifactId>
   <version>3.9</version>
</dependency>

Download

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



Download jbehave-spring-3.9.jar file




PreviousNext

Related