Maven Repository - POM file for Jetty pax-web-jetty-bundle 0.7.1 0.7.1

Summary

OPS4J Pax Web - Jetty Bundle.

Pax Web is a OSGi Http Service based on Jetty 6. Detailed information to be found at http://wiki.ops4j.org/confluence/x/AYAz..

Declaration

Here is the list of declaration for pax-web-jetty-bundle. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.ops4j.pax.web</groupId>
   <artifactId>pax-web-jetty-bundle</artifactId>
   <version>0.7.1</version>
</dependency>

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





Plugin

The following plugins are used in the pax-web-jetty-bundle-0.7.1.jar

  1. maven-bundle-plugin
  2. maven-pax-plugin

Packages

The following packages are defined in the pax-web-jetty-bundle-0.7.1.jar

javax.servlet
javax.servlet.http
org.apache.commons.logging
org.mortbay.component
org.mortbay.io
org.mortbay.io.bio
org.mortbay.io.nio
org.mortbay.jetty
org.mortbay.jetty.bio
org.mortbay.jetty.deployer
org.mortbay.jetty.handler
org.mortbay.jetty.nio
org.mortbay.jetty.security
org.mortbay.jetty.servlet
org.mortbay.jetty.webapp
org.mortbay.log
org.mortbay.resource
org.mortbay.servlet
org.mortbay.servlet.jetty
org.mortbay.thread
org.mortbay.util
org.mortbay.util.ajax
org.mortbay.xml
org.ops4j.lang
org.ops4j.pax.swissbox.core
org.ops4j.pax.swissbox.lifecycle
org.ops4j.pax.swissbox.property
org.ops4j.pax.web.service
org.ops4j.pax.web.service.internal
org.ops4j.pax.web.service.internal.util
org.ops4j.pax.web.service.jetty.internal
org.ops4j.pax.web.service.spi
org.ops4j.pax.web.service.spi.model
org.ops4j.pax.web.service.spi.util
org.ops4j.util.property
org.osgi.service.http




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">
  <modelVersion>4.0.0</modelVersion>

  <parent>
    <relativePath>../pom.xml</relativePath>
    <groupId>org.ops4j.pax</groupId>
    <artifactId>web</artifactId>
    <version>0.7.1</version>
  </parent>

  <groupId>org.ops4j.pax.web</groupId>
  <artifactId>pax-web-jetty-bundle</artifactId>
  <version>0.7.1</version>
  <packaging>bundle</packaging>

  <name>OPS4J Pax Web - Jetty Bundle</name>
  <description>
    Pax Web is a OSGi Http Service based on Jetty 6.
    Detailed information to be found at http://wiki.ops4j.org/confluence/x/AYAz. 
  </description>

  <properties>
    <bundle.symbolicName>org.ops4j.pax.web.pax-web-jetty-bundle</bundle.symbolicName>
    <bundle.namespace>org.ops4j.pax.web.service.jetty</bundle.namespace>
  </properties>

  <build>
    <plugins>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
      </plugin>
      <plugin>
        <groupId>org.ops4j</groupId>
        <artifactId>maven-pax-plugin</artifactId>
      </plugin>
    </plugins>
  </build>

  <dependencies>

    <!-- Embeded dependencies (not transitive) -->
    <dependency>
      <groupId>org.ops4j.pax.web</groupId>
      <artifactId>pax-web-runtime</artifactId>
      <version>0.7.1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.ops4j.pax.web</groupId>
      <artifactId>pax-web-jetty</artifactId>
      <version>0.7.1</version>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>org.mortbay.jetty</groupId>
      <artifactId>jetty</artifactId>
      <scope>compile</scope>
      <optional>true</optional>
    </dependency>

    <!-- Provided dependencies (not transitive) -->
    <dependency>
      <groupId>org.osgi</groupId>
      <artifactId>org.osgi.core</artifactId>
      <scope>provided</scope>
    </dependency>    

  </dependencies>

</project>