Download cucumber-picocontainer-1.2.0.jar file

Introduction

You can download cucumber-picocontainer-1.2.0.jar in this page.

License

Open Source

Type List

cucumber-picocontainer-1.2.0.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/info.cukes/cucumber-picocontainer/pom.properties
META-INF/maven/info.cukes/cucumber-picocontainer/pom.xml
cucumber.api.picocontainer.README.class
cucumber.runtime.java.picocontainer.PicoFactory.class

Pom

cucumber-picocontainer-1.2.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/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.0</version>
    </parent>

    <artifactId>cucumber-picocontainer</artifactId>
    <packaging>jar</packaging>
    <name>Cucumber-JVM: PicoContainer</name>

    <dependencies>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-java</artifactId>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-jvm-deps</artifactId>
        </dependency>
        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>gherkin</artifactId>
        </dependency>
        <dependency>
            <groupId>org.picocontainer</groupId>
            <artifactId>picocontainer</artifactId>
            <scope>compile</scope>
        </dependency>

        <dependency>
            <groupId>info.cukes</groupId>
            <artifactId>cucumber-junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</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-antrun-plugin</artifactId>
                <executions>
                    <execution>
                        <id>CLI-test</id>
                        <phase>integration-test</phase>
                        <goals>
                            <goal>run</goal>
                        </goals>
                        <configuration>
                            <target>
                                <echo message="Running CLI test for picocontainer" />
                                <java classname="cucumber.api.cli.Main" fork="true" failonerror="true" newenvironment="true" maxmemory="512m" classpathref="maven.test.classpath">
                                    <arg value="--plugin" />
                                    <arg value="progress" />
                                    <arg value="--glue" />
                                    <arg value="cucumber.runtime.java.picocontainer" />
                                    <arg value="${basedir}/src/test/resources/cucumber/runtime/java/picocontainer" />
                                </java>
                            </target>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>

POM Entry

<dependency>
   <groupId>info.cukes</groupId>
   <artifactId>cucumber-picocontainer</artifactId>
   <version>1.2.0</version>
</dependency>

Download

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



Download cucumber-picocontainer-1.2.0.jar file




PreviousNext

Related