Servlet Specification 2.5 API.
Here is the list of declaration for servlet-api-2.5. 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-2.5</artifactId> <version>6.1.14</version> </dependency>
If you think this Maven repository POM file listing for servlet-api-2.5 is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
Name:CDDL 1.0
URL: https://glassfish.dev.java.net/public/CDDLv1.0.html.
The following table lists the most popular artifacts which are depending on servlet-api-2.5-6.1.14. Their categories and depend by count are also listed.
Category | Artifact | Depended By Count |
---|---|---|
Testing | cobertura 2.0.2 Cobertura is a free Java tool that calculates the percentage of code accessed by tests. It can be used to identify which parts of your Java program are lacking test coverage. It is based on jcoverage. | 6 |
Document Database | hbase 0.94.3 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 28 |
Document Database | hbase 0.94.14 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 8 |
Document Database | hbase 0.94.6.1 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 19 |
Document Database | hbase 0.94.12 HBase is the <a href="http://hadoop.apache.org"&rt;Hadoop</a&rt; database. Use it when you need random, realtime read/write access to your Big Data. This project's goal is the hosting of very large tables -- billions of rows X millions of columns -- atop clusters of commodity hardwar... | 5 |
The following plugins are used in the servlet-api-2.5-6.1.14.jar
The following packages are defined in the servlet-api-2.5-6.1.14.jar
javax.servlet javax.servlet.http
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> <artifactId>project</artifactId> <groupId>org.mortbay.jetty</groupId> <version>6.1.14</version> <relativePath>../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.mortbay.jetty</groupId> <artifactId>servlet-api-2.5</artifactId> <name>Servlet Specification 2.5 API</name> <description>Servlet Specification 2.5 API</description> <packaging>jar</packaging> <licenses> <license> <name>CDDL 1.0</name> <url>https://glassfish.dev.java.net/public/CDDLv1.0.html</url> </license> </licenses> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <executions> <execution> <id>clean</id> <phase>clean</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <delete failonerror="false" file="../../lib/${project.artifactId}-${project.version}.${project.packaging}" /> </tasks> </configuration> </execution> <execution> <phase>install</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy file="target/${project.artifactId}-${project.version}.${project.packaging}" tofile="../../lib/${project.artifactId}-${project.version}.${project.packaging}" /> </tasks> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.2</version> <configuration> <stylesheetfile>${basedir}/../../project-website/project-site/src/resources/javadoc.css</stylesheetfile> </configuration> </plugin> <plugin> <groupId>org.apache.felix</groupId> <artifactId>maven-bundle-plugin</artifactId> <version>${maven-bundle-plugin-version}</version> <extensions>true</extensions> <executions> <execution> <goals> <goal>manifest</goal> </goals> <configuration> <instructions> <Bundle-Version>2.5</Bundle-Version> <Import-Package>!javax.servlet.*,*</Import-Package> <Bundle-RequiredExecutionEnvironment>J2SE-1.4</Bundle-RequiredExecutionEnvironment> <Implementation-Vendor>JCP</Implementation-Vendor> <Specification-Version>2.5</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> </plugins> </build> </project>