组织ID: |
javax.servlet |
项目ID: |
javax.servlet-api |
版本: |
3.0.1 |
最后修改时间: |
2018-07-23 21:34:33 |
包类型: |
jar |
标题: |
Java Servlet API |
相关URL: |
http://servlet-spec.java.net |
大小: |
83.35KB |
|
Maven引入代码: |
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.0.1</version>
</dependency>
|
Gradle引入代码: |
javax.servlet:javax.servlet-api:3.0.1
|
下载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>1</version>
</parent>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<packaging>jar</packaging>
<version>3.0.1</version>
<properties>
<extension.name>javax.servlet</extension.name>
<bundle.symbolicName>javax.servlet-api</bundle.symbolicName>
<spec.title>Java(TM) Servlet API Design Specification</spec.title>
<spec.version>3.0</spec.version>
<vendor.name>Oracle</vendor.name>
<findbugs.version>2.3.1</findbugs.version>
<findbugs.exclude />
<findbugs.threshold>High</findbugs.threshold>
</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:svn+ssh://janey@svn.java.net/glassfish~svn/tags/javax.servlet-api-3.0.1</connection>
<developerConnection>scm:svn:svn+ssh://janey@svn.java.net/glassfish~svn/tags/javax.servlet-api-3.0.1</developerConnection>
<url>https://svn.java.net/svn/glassfish~svn/tags/javax.servlet-api-3.0.1</url>
</scm>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</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>
<Export-Package>${extension.name}.*; version=${spec.version}</Export-Package>
<Bundle-SymbolicName>${bundle.symbolicName}</Bundle-SymbolicName>
<_include>-osgi.bundle</_include>
</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>
<configuration>
<archive>
<manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
<manifestEntries>
<Extension-Name>${extension.name}</Extension-Name>
<Specification-Title>${spec.title}</Specification-Title>
<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>org.glassfish</Implementation-Vendor-Id>
</manifestEntries>
</archive>
</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>
<executions>
<execution>
<phase>javadoc</phase>
<goals>
<goal>javadoc</goal>
</goals>
<configuration>
<groups>
<group>
<title>Servlet API Documentation</title>
<packages>javax.servlet</packages>
</group>
</groups>
<bottom>Portions Copyright &copy; 1999-2002 The Apache Software Foundation. All Rights Reserved. Portions Copyright &copy; 2005-2011 Oracle and/or its affiliates. All Rights Reserve</bottom>
</configuration>
</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>
</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
META-INF/LICENSE.txt
javax.servlet.ServletSecurityElement.class
javax.servlet.ServletContextAttributeEvent.class
javax.servlet.ServletRequestWrapper.class
javax.servlet.ServletInputStream.class
javax.servlet.ServletContextAttributeListener.class
javax.servlet.annotation.ServletSecurity$EmptyRoleSemantic.class
javax.servlet.annotation.ServletSecurity.class
javax.servlet.annotation.WebFilter.class
javax.servlet.annotation.WebInitParam.class
javax.servlet.annotation.MultipartConfig.class
javax.servlet.annotation.WebServlet.class
javax.servlet.annotation.ServletSecurity$TransportGuarantee.class
javax.servlet.annotation.HttpConstraint.class
javax.servlet.annotation.HandlesTypes.class
javax.servlet.annotation.WebListener.class
javax.servlet.annotation.HttpMethodConstraint.class
javax.servlet.AsyncEvent.class
javax.servlet.ServletResponse.class
javax.servlet.ServletContainerInitializer.class
javax.servlet.UnavailableException.class
javax.servlet.ServletOutputStream.class
javax.servlet.ServletContextEvent.class
javax.servlet.RequestDispatcher.class
javax.servlet.ServletContextListener.class
javax.servlet.FilterConfig.class
javax.servlet.ServletRequestAttributeListener.class
javax.servlet.SessionCookieConfig.class
javax.servlet.ServletRequestListener.class
javax.servlet.SessionTrackingMode.class
javax.servlet.AsyncContext.class
javax.servlet.Registration$Dynamic.class
javax.servlet.ServletRequestAttributeEvent.class
javax.servlet.Filter.class
javax/servlet/LocalStrings_fr.properties
javax.servlet.FilterRegistration$Dynamic.class
javax.servlet.Registration.class
javax.servlet.ServletRegistration.class
javax.servlet.MultipartConfigElement.class
javax.servlet.DispatcherType.class
javax.servlet.http.HttpServletRequest.class
javax.servlet.http.HttpSessionContext.class
javax.servlet.http.HttpUtils.class
javax.servlet.http.HttpSession.class
javax.servlet.http.HttpSessionAttributeListener.class
javax.servlet.http.NoBodyOutputStream.class
javax.servlet.http.HttpSessionActivationListener.class
javax.servlet.http.NoBodyResponse.class
javax.servlet.http.HttpSessionEvent.class
javax.servlet.http.HttpServlet.class
javax/servlet/http/LocalStrings_es.properties
javax/servlet/http/LocalStrings_fr.properties
javax.servlet.http.HttpSessionBindingListener.class
javax.servlet.http.Part.class
javax.servlet.http.HttpServletResponseWrapper.class
javax.servlet.http.HttpServletRequestWrapper.class
javax.servlet.http.HttpSessionBindingEvent.class
javax/servlet/http/LocalStrings_ja.properties
javax.servlet.http.HttpServletResponse.class
javax.servlet.http.HttpSessionListener.class
javax.servlet.http.Cookie.class
javax/servlet/http/LocalStrings.properties
javax.servlet.ServletRegistration$Dynamic.class
javax.servlet.GenericServlet.class
javax.servlet.HttpMethodConstraintElement.class
javax.servlet.ServletRequest.class
javax.servlet.Servlet.class
javax.servlet.SingleThreadModel.class
#内容未全部加载,请点击展开加载全部代码(NowJava.com)
|
依赖Jar: |
无
|