Download pax-exam-spi-4.5.0.jar file

Introduction

You can download pax-exam-spi-4.5.0.jar in this page.

License

Apache Open Source

Type List

pax-exam-spi-4.5.0.jar file has the following types.

META-INF/DEPENDENCIES.txt
META-INF/LICENSE.txt
META-INF/MANIFEST.MF
META-INF/NOTICE.txt
META-INF/maven/org.ops4j.pax.exam/pax-exam-spi/pom.properties
META-INF/maven/org.ops4j.pax.exam/pax-exam-spi/pom.xml
org.ops4j.pax.exam.spi.ContentCollector.class
org.ops4j.pax.exam.spi.DefaultExamReactor.class
org.ops4j.pax.exam.spi.DefaultExamSystem.class
org.ops4j.pax.exam.spi.ExamReactor.class
org.ops4j.pax.exam.spi.PaxExamRuntime.class
org.ops4j.pax.exam.spi.Probes.class
org.ops4j.pax.exam.spi.StagedExamReactor.class
org.ops4j.pax.exam.spi.StagedExamReactorFactory.class
org.ops4j.pax.exam.spi.container.ContainerConstants.class
org.ops4j.pax.exam.spi.intern.CollectFromBase.class
org.ops4j.pax.exam.spi.intern.CollectFromItems.class
org.ops4j.pax.exam.spi.intern.CompositeCollector.class
org.ops4j.pax.exam.spi.intern.DefaultTestAddress.class
org.ops4j.pax.exam.spi.intern.DefaultTestProbeProvider.class
org.ops4j.pax.exam.spi.intern.DuplicateAwareJarOutputStream.class
org.ops4j.pax.exam.spi.intern.OverwriteMode.class
org.ops4j.pax.exam.spi.intern.TestProbeBuilderImpl.class
org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactor.class
org.ops4j.pax.exam.spi.reactors.AllConfinedStagedReactorFactory.class
org.ops4j.pax.exam.spi.reactors.AnnotationHandler.class
org.ops4j.pax.exam.spi.reactors.EagerSingleStagedReactor.class
org.ops4j.pax.exam.spi.reactors.EagerSingleStagedReactorFactory.class
org.ops4j.pax.exam.spi.reactors.ExamReactorStrategy.class
org.ops4j.pax.exam.spi.reactors.PerClass.class
org.ops4j.pax.exam.spi.reactors.PerMethod.class
org.ops4j.pax.exam.spi.reactors.PerSuite.class
org.ops4j.pax.exam.spi.reactors.PerSuiteStagedReactor.class
org.ops4j.pax.exam.spi.reactors.ReactorManager.class
org.ops4j.pax.exam.spi.reactors.SingletonStagedReactor.class
org.ops4j.pax.exam.spi.war.FileFinder.class
org.ops4j.pax.exam.spi.war.JarBuilder.class
org.ops4j.pax.exam.spi.war.WarBuilder.class
org.ops4j.pax.exam.spi.war.WarTestProbeBuilderImpl.class
org.ops4j.pax.exam.spi.war.WarTestProbeProvider.class
org.ops4j.pax.exam.spi.war.ZipBuilder.class

Pom

pax-exam-spi-4.5.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>

    <parent>
        <groupId>org.ops4j.pax</groupId>
        <artifactId>exam</artifactId>
        <version>4.5.0</version>
        <relativePath>../../pom</relativePath>
    </parent>

    <groupId>org.ops4j.pax.exam</groupId>
    <artifactId>pax-exam-spi</artifactId>
    <packaging>jar</packaging>

    <name>OPS4J Pax Exam UI Low Level SPI</name>

    <dependencies>
    <!--  Project Dependencies -->
        <dependency>
            <groupId>org.ops4j.pax.exam</groupId>
            <artifactId>pax-exam</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.ops4j.base</groupId>
            <artifactId>ops4j-base-spi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.osgi</groupId>
            <artifactId>org.osgi.core</artifactId>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
        </dependency>
        <dependency>
            <groupId>org.ops4j.pax.tinybundles</groupId>
            <artifactId>tinybundles</artifactId>
        </dependency>
        <!--  Test Dependencies -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.mockito</groupId>
            <artifactId>mockito-all</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-simple</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.ops4j.pax.url</groupId>
            <artifactId>pax-url-aether</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <id>copy-war</id>
                        <goals>
                            <goal>copy</goal>
                        </goals>
                        <configuration>
                            <artifactItems>
                                <artifactItem>
                                    <groupId>org.mortbay.jetty.testwars</groupId>
                                    <artifactId>test-war-dump</artifactId>
                                    <version>8.1.4.v20120524</version>
                                    <type>war</type>
                                    <outputDirectory>${project.build.directory}</outputDirectory>
                                </artifactItem>
                            </artifactItems>
                            <stripVersion>true</stripVersion>
                        </configuration>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

POM Entry

<dependency>
   <groupId>org.ops4j.pax.exam</groupId>
   <artifactId>pax-exam-spi</artifactId>
   <version>4.5.0</version>
</dependency>

Download

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



Download pax-exam-spi-4.5.0.jar file




PreviousNext

Related