Maven Repository - POM file for Jetty arquillian-jetty-embedded-7 1.0.0.CR1 1.0.0.CR1

Summary

Arquillian Container Jetty Embedded 7.x and 8.x.

Jetty Embedded 7.x and 8.x container integration for the Arquillian project.

Declaration

Here is the list of declaration for arquillian-jetty-embedded-7. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.jboss.arquillian.container</groupId>
   <artifactId>arquillian-jetty-embedded-7</artifactId>
   <version>1.0.0.CR1</version>
</dependency>

If you think this Maven repository POM file listing for arquillian-jetty-embedded-7 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.

Depends on

The arquillian-jetty-embedded-7-1.0.0.CR1 has 3 dependencies.The most popular ones are listed in the following table along with their categories and number of artifacts depending on them.

CategoryArtifactDepended By Count
Jettyjetty-webapp 7.0.0.v20091005
Jetty web application support
16
Jettyjetty-plus 7.0.0.v20091005
Jetty JavaEE style services
13




Packages

The following packages are defined in the arquillian-jetty-embedded-7-1.0.0.CR1.jar

org.jboss.arquillian.container.jetty.embedded_7

POM File Source

Here is the content of the POM file.

<?xml version="1.0" encoding="UTF-8"?>
<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">

    <parent>
        <groupId>org.jboss.arquillian.container</groupId>
        <artifactId>arquillian-parent-jetty</artifactId>
        <version>1.0.0.CR1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <modelVersion>4.0.0</modelVersion>

    <artifactId>arquillian-jetty-embedded-7</artifactId>
    <name>Arquillian Container Jetty Embedded 7.x and 8.x</name>
    <description>Jetty Embedded 7.x and 8.x container integration for the Arquillian project</description>

    <properties>
        
        <!-- known to work with all Jetty 7.x and 8.x versions (7.0.0.v20091005 through 8.0.0.M0) -->
        <version.jetty>7.0.0.v20091005</version.jetty>
        <version.shrinkwrap_container_jetty>1.0.0-beta-1</version.shrinkwrap_container_jetty>
        
    </properties>

    <dependencies>

        <!-- org.jboss.arquillian -->
        <dependency>
            <groupId>org.jboss.arquillian.container</groupId>
            <artifactId>arquillian-container-spi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.container</groupId>
            <artifactId>arquillian-container-test-spi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.protocol</groupId>
            <artifactId>arquillian-protocol-servlet</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.testenricher</groupId>
            <artifactId>arquillian-testenricher-cdi</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.testenricher</groupId>
            <artifactId>arquillian-testenricher-resource</artifactId>
        </dependency>
        <dependency>
            <groupId>org.jboss.arquillian.testenricher</groupId>
            <artifactId>arquillian-testenricher-initialcontext</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.shrinkwrap.container</groupId>
            <artifactId>shrinkwrap-extension-jetty-70</artifactId>
            <version>${version.shrinkwrap_container_jetty}</version>
        </dependency>

        <dependency>
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-webapp</artifactId>
            <version>${version.jetty}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>    <!-- Jetty plus and naming required for testing resource injections -->
            <groupId>org.eclipse.jetty</groupId>
            <artifactId>jetty-plus</artifactId>
            <version>${version.jetty}</version>
            <scope>provided</scope>
        </dependency>

        <dependency>
            <groupId>org.jboss.arquillian.junit</groupId>
            <artifactId>arquillian-junit-container</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
        </dependency>

        <dependency>
            <groupId>javax.enterprise</groupId>
            <artifactId>cdi-api</artifactId>
        </dependency>

        <!-- Weld servlet required for testing CDI injections -->

        <dependency>
            <groupId>org.glassfish.web</groupId>
            <artifactId>el-impl</artifactId>
        </dependency>
        <dependency>
            <groupId>javax.servlet.jsp</groupId>
            <artifactId>jsp-api</artifactId>
        </dependency>
        <dependency>
            <groupId>com.h2database</groupId>
            <artifactId>h2</artifactId>
        </dependency>

        <dependency>
            <groupId>org.jboss.shrinkwrap.resolver</groupId>
            <artifactId>shrinkwrap-resolver-impl-maven</artifactId>
            <scope>test</scope>
        </dependency>

    </dependencies>
</project>