| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
- Copyright (c) 1997-2017 Oracle and/or its affiliates. All rights reserved.
- The contents of this file are subject to the terms of either the GNU
- General Public License Version 2 only ("GPL") or the Common Development
- and Distribution License("CDDL") (collectively, the "License"). You
- may not use this file except in compliance with the License. You can
- obtain a copy of the License at
- https://oss.oracle.com/licenses/CDDL+GPL-1.1
- or LICENSE.txt. See the License for the specific
- language governing permissions and limitations under the License.
- When distributing the software, include this License Header Notice in each
- file and include the License file at LICENSE.txt.
- GPL Classpath Exception:
- Oracle designates this particular file as subject to the "Classpath"
- exception as provided by Oracle in the GPL Version 2 section of the License
- file that accompanied this code.
- Modifications:
- If applicable, add the following below the License Header, with the fields
- enclosed by brackets [] replaced by your own identifying information:
- "Portions Copyright [year] [name of copyright owner]"
- Contributor(s):
- If you wish your version of this file to be governed by only the CDDL or
- only the GPL Version 2, indicate your decision by adding "[Contributor]
- elects to include this software in this distribution under the [CDDL or GPL
- Version 2] license." If you don't indicate a single choice of license, a
- recipient has the option to distribute your version of this file under
- either the CDDL, the GPL Version 2 or to extend the choice of license to
- its licensees as provided above. However, if you add GPL Version 2 code
- and therefore, elected the GPL Version 2 license, then the option applies
- only if the new code is made subject to such option by the copyright
- holder.
- -->
- <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>4.0.1</version>
- <properties>
- <spec.version>4.0</spec.version>
- <extension.name>javax.servlet</extension.name>
- <bundle.symbolicName>javax.servlet-api</bundle.symbolicName>
- <bundle.version>4.0.0</bundle.version>
- <window.title>Java Servlet 4.0</window.title>
- <doc.title>Java Servlet 4.0 API Specification</doc.title>
- <vendor.name>Oracle Corporation</vendor.name>
- <implementation.vendor.id>org.glassfish</implementation.vendor.id>
- <findbugs.version>3.0.4</findbugs.version>
- <findbugs.exclude>exclude.xml</findbugs.exclude>
- <findbugs.threshold>Low</findbugs.threshold>
- <copyright-plugin.version>1.49</copyright-plugin.version>
- </properties>
- <name>Java Servlet API</name>
- <url>https://javaee.github.io/servlet-spec/</url>
- <developers>
- <developer>
- <id>edburns</id>
- <name>Ed Burns</name>
- <url>http://purl.oclc.org/NET/edburns/</url>
- <organization>Oracle</organization>
- <roles>
- <role>co-lead</role>
- <role>developer</role>
- </roles>
- </developer>
- <developer>
- <id>shingwaichan</id>
- <name>Shing Wai Chan</name>
- <organization>Oracle</organization>
- <roles>
- <role>lead</role>
- <role>developer</role>
- </roles>
- </developer>
- </developers>
- <distributionManagement>
- <snapshotRepository>
- <id>jvnet-nexus-snapshots</id>
- <name>Java.net Nexus Snapshots Repository</name>
- <url>https://maven.java.net/content/repositories/snapshots/</url>
- </snapshotRepository>
- <repository>
- <id>jvnet-nexus-staging</id>
- <name>Java.net Nexus Staging Repository</name>
- <url>https://maven.java.net/service/local/staging/deploy/maven2/</url>
- </repository>
- </distributionManagement>
- <organization>
- <name>GlassFish Community</name>
- <url>https://javaee.github.io</url>
- </organization>
- <licenses>
- <license>
- <name>CDDL + GPLv2 with classpath exception</name>
- <url>https://oss.oracle.com/licenses/CDDL+GPL-1.1</url>
- <distribution>repo</distribution>
- <comments>A business-friendly OSS license</comments>
- </license>
- </licenses>
- <issueManagement>
- <system>github</system>
- <url>https://github.com/javaee/servlet-spec/issues</url>
- </issueManagement>
- <mailingLists>
- <mailingList>
- <name>Servlet Developer</name>
- <archive>servlet-spec@javaee.groups.io</archive>
- </mailingList>
- </mailingLists>
- <scm>
- <connection>scm:git:https://github.com/javaee/servlet-spec.git</connection>
- <developerConnection>scm:git:git@github.com:javaee/servlet-spec.git</developerConnection>
- <url>https://github.com/javaee/servlet-spec</url>
- <tag>4.0.1</tag>
- </scm>
- <build>
- <plugins>
- <plugin>
- <artifactId>maven-compiler-plugin</artifactId>
- <version>3.1</version>
- <configuration>
- <source>1.8</source>
- <target>1.8</target>
- <compilerArgument>-Xlint:all</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.10.4</version>
- <configuration>
- <sourcepath>src</sourcepath>
- <doctitle>${doc.title}</doctitle>
- <windowtitle>${window.title}</windowtitle>
- <stylesheetfile>javax.servlet-api.css</stylesheetfile>
- <docfilessubdirs>true</docfilessubdirs>
- <groups>
- <group>
- <title>Servlet API Documentation</title>
- <packages>javax.servlet</packages>
- </group>
- </groups>
- <bottom>
- <![CDATA[Copyright © 1999-2017,
- <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>
- <tags>
- <tag>
- <name>implSpec</name>
- <placement>a</placement>
- <head>Implementation Requirements:</head>
- </tag>
- <tag>
- <name>param</name>
- </tag>
- <tag>
- <name>return</name>
- </tag>
- <tag>
- <name>throws</name>
- </tag>
- <tag>
- <name>since</name>
- </tag>
- <tag>
- <name>version</name>
- </tag>
- <tag>
- <name>serialData</name>
- </tag>
- <tag>
- <name>factory</name>
- </tag>
- <tag>
- <name>see</name>
- </tag>
- </tags>
- </configuration>
- <executions>
- <execution>
- <goals>
- <goal>jar</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>
- <version>2.5.3</version>
- <configuration>
- <mavenExecutorId>forked-path</mavenExecutorId>
- <useReleaseProfile>false</useReleaseProfile>
- <tagNameFormat>@{project.version}</tagNameFormat>
- <arguments>${release.arguments}</arguments>
- </configuration>
- <dependencies>
- <dependency>
- <groupId>org.apache.maven.scm</groupId>
- <artifactId>maven-scm-provider-gitexe</artifactId>
- <version>1.8.1</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.glassfish.copyright</groupId>
- <artifactId>glassfish-copyright-maven-plugin</artifactId>
- <version>${copyright-plugin.version}</version>
- <configuration>
- <scm>git</scm>
- <scmOnly>true</scmOnly>
- <excludeFile>
- ${basedir}/copyright-exclude
- </excludeFile>
- <ignoreYear>true</ignoreYear>
- </configuration>
- <executions>
- <execution>
- <id>check-copyright</id>
- <phase>process-test-sources</phase>
- <goals>
- <goal>copyright</goal>
- <goal>check</goal>
- </goals>
- </execution>
- </executions>
- </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>
- </project>
|