组织ID: |
javax.servlet |
项目ID: |
javax.servlet-api |
版本: |
3.1.0 |
最后修改时间: |
2018-07-23 21:18:41 |
包类型: |
jar |
标题: |
Java Servlet API |
相关URL: |
http://servlet-spec.java.net |
大小: |
93.56KB |
|
Maven引入代码: |
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
</dependency>
|
Gradle引入代码: |
javax.servlet:javax.servlet-api:3.1.0
|
下载Jar包: |
|
POM文件内容: |
<?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>
<groupId>net.java</groupId>
<artifactId>jvnet-parent</artifactId>
<version>3</version>
</parent>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<packaging>jar</packaging>
<version>3.1.0</version>
<properties>
<spec.version>3.1</spec.version>
<extension.name>javax.servlet</extension.name>
<bundle.symbolicName>javax.servlet-api</bundle.symbolicName>
<bundle.version>3.1.0</bundle.version>
<window.title>Java Servlet 3.1</window.title>
<doc.title>Java Servlet 3.1 API Specification</doc.title>
<vendor.name>Oracle Corporation</vendor.name>
<implementation.vendor.id>org.glassfish</implementation.vendor.id>
<findbugs.version>2.3.1</findbugs.version>
<findbugs.exclude>exclude.xml</findbugs.exclude>
<findbugs.threshold>Low</findbugs.threshold>
<copyright-plugin.version>1.33</copyright-plugin.version>
</properties>
<name>Java Servlet API</name>
<url>http://servlet-spec.java.net</url>
<developers>
<developer>
<id>mode</id>
<name>Rajiv Mordani</name>
<url>http://weblogs.java.net/blog/mode</url>
<organization>Oracle</organization>
<roles>
<role>lead</role>
</roles>
</developer>
<developer>
<id>swchan2</id>
<name>Shing Wai Chan</name>
<url>http://weblogs.java.net/blog/swchan2</url>
<organization>Oracle</organization>
<roles>
<role>lead</role>
<role>developer</role>
</roles>
</developer>
</developers>
<organization>
<name>GlassFish Community</name>
<url>https://glassfish.dev.java.net</url>
</organization>
<licenses>
<license>
<name>CDDL + GPLv2 with classpath exception</name>
<url>https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<issueManagement>
<system>jira</system>
<url>http://java.net/jira/browse/SERVLET_SPEC</url>
</issueManagement>
<mailingLists>
<mailingList>
<name>Servlet Developer</name>
<archive>users@servlet-spec.java.net</archive>
</mailingList>
</mailingLists>
<scm>
<connection>scm:svn:https://svn.java.net/svn/glassfish~svn/tags/javax.servlet-api-3.1.0</connection>
<developerConnection>scm:svn:https://svn.java.net/svn/glassfish~svn/tags/javax.servlet-api-3.1.0</developerConnection>
<url>http://java.net/projects/glassfish/sources/svn/show/tags/javax.servlet-api-3.1.0</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.0.2</version>
<configuration>
<source>1.7</source>
<target>1.7</target>
<compilerArgument>-Xlint:unchecked</compilerArgument>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>1.4.3</version>
<configuration>
<supportedProjectTypes>
<supportedProjectType>jar</supportedProjectType>
</supportedProjectTypes>
<instructions>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<Bundle-Description>
Java(TM) Servlet ${spec.version} API Design Specification
</Bundle-Description>
<Bundle-Version>${bundle.version}</Bundle-Version>
<Extension-Name>${extension.name}</Extension-Name>
<Specification-Version>${spec.version}</Specification-Version>
<Specification-Vendor>${vendor.name}</Specification-Vendor>
<Implementation-Version>${project.version}</Implementation-Version>
<Implementation-Vendor>${project.organization.name}</Implementation-Vendor>
<Implementation-Vendor-Id>${implementation.vendor.id}</Implementation-Vendor-Id>
</instructions>
</configuration>
<executions>
<execution>
<id>bundle-manifest</id>
<phase>process-classes</phase>
<goals>
<goal>manifest</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>2.4</version>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
</archive>
<excludes>
<exclude>**/*.java</exclude>
</excludes>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-remote-resources-plugin</artifactId>
<version>1.2.1</version>
<executions>
<execution>
<goals>
<goal>process</goal>
</goals>
<configuration>
<resourceBundles>
<resourceBundle>org.glassfish:legal:1.1</resourceBundle>
</resourceBundles>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>2.1</version>
<configuration>
<includePom>true</includePom>
</configuration>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.8</version>
<configuration>
<sourcepath>src</sourcepath>
<doctitle>${doc.title}</doctitle>
<windowtitle>${window.title}</windowtitle>
<groups>
<group>
<title>Servlet API Documentation</title>
<packages>javax.servlet</packages>
</group>
</groups>
<bottom>
<![CDATA[Copyright © 1999-2013,
<a href="http://www.oracle.com">Oracle</a>
and/or its affiliates. All Rights Reserved.
Use is subject to
<a href="{@docRoot}/doc-files/speclicense.html" target="_top">license terms</a>.
Portions Copyright © 1999-2002 The Apache Software Foundation.
]]>
</bottom>
</configuration>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>javadoc</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
<findbugsXmlOutput>true</findbugsXmlOutput>
<findbugsXmlWithMessages>true</findbugsXmlWithMessages>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>${release.arguments}</arguments>
</configuration>
</plugin>
<plugin>
<groupId>org.glassfish.copyright</groupId>
<artifactId>glassfish-copyright-maven-plugin</artifactId>
<version>${copyright-plugin.version}</version>
<configuration>
<excludeFile>
${basedir}/copyright-exclude
</excludeFile>
</configuration>
</plugin>
</plugins>
<resources>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.html</include>
</includes>
</resource>
<resource>
<directory>src/main/resources</directory>
<excludes>
<exclude>META-INF/README</exclude>
</excludes>
</resource>
</resources>
</build>
<reporting>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs.version}</version>
<configuration>
<threshold>${findbugs.threshold}</threshold>
<excludeFilterFile>${findbugs.exclude}</excludeFilterFile>
</configuration>
</plugin>
</plugins>
</reporting>
<repositories>
<repository>
<id>glassfish-repository</id>
<url>http://download.java.net/maven/glassfish</url>
<snapshots>
<updatePolicy>never</updatePolicy>
</snapshots>
</repository>
</repositories>
</project>
|
Jar包内容: |
META-INF/MANIFEST.MF
javax.servlet.annotation.HandlesTypes.class
javax.servlet.annotation.HttpConstraint.class
javax.servlet.annotation.HttpMethodConstraint.class
javax.servlet.annotation.MultipartConfig.class
javax/servlet/annotation/package.html
javax.servlet.annotation.ServletSecurity$EmptyRoleSemantic.class
javax.servlet.annotation.ServletSecurity$TransportGuarantee.class
javax.servlet.annotation.ServletSecurity.class
javax.servlet.annotation.WebFilter.class
javax.servlet.annotation.WebInitParam.class
javax.servlet.annotation.WebListener.class
javax.servlet.annotation.WebServlet.class
javax.servlet.AsyncContext.class
javax.servlet.AsyncEvent.class
javax.servlet.AsyncListener.class
javax.servlet.descriptor.JspConfigDescriptor.class
javax.servlet.descriptor.JspPropertyGroupDescriptor.class
javax/servlet/descriptor/package.html
javax.servlet.descriptor.TaglibDescriptor.class
javax.servlet.DispatcherType.class
javax.servlet.Filter.class
javax.servlet.FilterChain.class
javax.servlet.FilterConfig.class
javax.servlet.FilterRegistration$Dynamic.class
javax.servlet.FilterRegistration.class
javax.servlet.GenericServlet.class
javax.servlet.http.Cookie.class
javax.servlet.http.HttpServlet.class
javax.servlet.http.HttpServletRequest.class
javax.servlet.http.HttpServletRequestWrapper.class
javax.servlet.http.HttpServletResponse.class
javax.servlet.http.HttpServletResponseWrapper.class
javax.servlet.http.HttpSession.class
javax.servlet.http.HttpSessionActivationListener.class
javax.servlet.http.HttpSessionAttributeListener.class
javax.servlet.http.HttpSessionBindingEvent.class
javax.servlet.http.HttpSessionBindingListener.class
javax.servlet.http.HttpSessionContext.class
javax.servlet.http.HttpSessionEvent.class
javax.servlet.http.HttpSessionIdListener.class
javax.servlet.http.HttpSessionListener.class
javax.servlet.http.HttpUpgradeHandler.class
javax.servlet.http.HttpUtils.class
javax/servlet/http/LocalStrings.properties
javax/servlet/http/LocalStrings_es.properties
javax/servlet/http/LocalStrings_fr.properties
javax/servlet/http/LocalStrings_ja.properties
javax.servlet.http.NoBodyOutputStream.class
javax.servlet.http.NoBodyResponse.class
javax/servlet/http/package.html
javax.servlet.http.Part.class
javax.servlet.http.WebConnection.class
javax.servlet.HttpConstraintElement.class
javax.servlet.HttpMethodConstraintElement.class
javax/servlet/LocalStrings.properties
javax/servlet/LocalStrings_fr.properties
javax/servlet/LocalStrings_ja.properties
javax.servlet.MultipartConfigElement.class
javax/servlet/package.html
javax.servlet.ReadListener.class
javax.servlet.Registration$Dynamic.class
javax.servlet.Registration.class
javax.servlet.RequestDispatcher.class
javax.servlet.Servlet.class
javax.servlet.ServletConfig.class
javax.servlet.ServletContainerInitializer.class
javax.servlet.ServletContext.class
javax.servlet.ServletContextAttributeEvent.class
javax.servlet.ServletContextAttributeListener.class
javax.servlet.ServletContextEvent.class
javax.servlet.ServletContextListener.class
javax.servlet.ServletException.class
javax.servlet.ServletInputStream.class
javax.servlet.ServletOutputStream.class
javax.servlet.ServletRegistration$Dynamic.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
无
|