Maven Repository - POM file for Servlet servlet-api 3.0.20100224 3.0.20100224

Summary

Servlet API.

Declaration

Here is the list of declaration for servlet-api. If you use Maven you can use the following code to add the dependency for this POM file.

<dependency>
   <groupId>org.mortbay.jetty</groupId>
   <artifactId>servlet-api</artifactId>
   <version>3.0.20100224</version>
</dependency>

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

Depended by

The following table lists the most popular artifacts which are depending on servlet-api-3.0.20100224. Their categories and depend by count are also listed.

CategoryArtifactDepended By Count
Libraryvraptor 3.4.0
Java web MVC framework for fast and maintainable development
11
Jettyjetty-continuation 7.6.0.v20120127
Asynchronous API
15
Jettyjetty-continuation 8.1.2.v20120308
Asynchronous API
13
Libraryvraptor 3.4.1
Java web MVC framework for fast and maintainable development
12




Plugin

The following plugins are used in the servlet-api-3.0.20100224.jar

  1. maven-bundle-plugin
  2. maven-compiler-plugin
  3. maven-jar-plugin
  4. maven-release-plugin

Packages

The following packages are defined in the servlet-api-3.0.20100224.jar

javax.servlet
javax.servlet.annotation
javax.servlet.descriptor
javax.servlet.http




POM File Source

Here is the content of the POM file.

<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.mortbay.jetty</groupId>
    <artifactId>jetty-parent</artifactId>
    <version>9</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <groupId>org.mortbay.jetty</groupId>
  <artifactId>servlet-api</artifactId>
  <version>3.0.20100224</version>
  <name>Servlet API</name>
  <description>Servlet API</description>
  <packaging>jar</packaging>
  <scm>
    <connection>scm:svn:http://svn.codehaus.org/jetty/servlet-api/trunk</connection>
    <developerConnection>scm:svn:https://svn.codehaus.org/jetty/servlet-api/trunk</developerConnection>
    <url>http://fisheye.codehaus.org/viewrep/jetty/</url>
  </scm>
  <build>
    <defaultGoal>install</defaultGoal>
    <plugins>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <source>1.6</source>
          <target>1.6</target>
          <verbose>false</verbose>
        </configuration>
      </plugin>
      <plugin>
        <groupId>org.apache.felix</groupId>
        <artifactId>maven-bundle-plugin</artifactId>
        <extensions>true</extensions>
        <executions>
          <execution>
            <goals>
              <goal>manifest</goal>
            </goals>
            <configuration>
              <instructions>
              <Bundle-Version>3.0</Bundle-Version>
              <Import-Package>!javax.servlet.*,*</Import-Package>
              <Bundle-RequiredExecutionEnvironment>J2SE-1.5</Bundle-RequiredExecutionEnvironment>
              <Implementation-Vendor>JCP</Implementation-Vendor>
              <Specification-Version>3.0</Specification-Version>
              </instructions>
            </configuration>
           </execution>
        </executions>
      </plugin>
      <plugin>
        <!--
        Required for OSGI
        -->
        <groupId>org.apache.maven.plugins</groupId>
        <artifactId>maven-jar-plugin</artifactId>
        <configuration>
          <archive>               
            <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
          </archive>
        </configuration>
      </plugin>
      <plugin>
        <artifactId>maven-release-plugin</artifactId>
        <configuration>
          <tagBase>https://svn.codehaus.org/jetty/servlet-api/tags</tagBase>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>