blob: 4ebd990eb0da6fa2010631b43dcc90dc1a0542ef [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
Carsten Ziegeler08ea07b2008-01-07 10:50:25 +000019<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">
Michael E. Rodriguez75c32682006-03-30 22:39:10 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Clement Escoffier4ae86972009-04-09 12:09:09 +000023 <version>1.0.4</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../pom/pom.xml</relativePath>
Michael E. Rodriguez75c32682006-03-30 22:39:10 +000025 </parent>
Alex Karasulu07d20492006-03-06 15:35:44 +000026 <modelVersion>4.0.0</modelVersion>
Alex Karasulu07d20492006-03-06 15:35:44 +000027 <name>Servlet 2.1 API</name>
Richard S. Hall1da4e542006-11-02 21:45:44 +000028 <description>Servlet 2.1 API</description>
Carsten Ziegeler39f609e2008-01-07 13:52:56 +000029 <version>1.0.1-SNAPSHOT</version>
Michael E. Rodriguez75c32682006-03-30 22:39:10 +000030 <artifactId>javax.servlet</artifactId>
Richard S. Hall1da4e542006-11-02 21:45:44 +000031 <packaging>bundle</packaging>
Alex Karasulu07d20492006-03-06 15:35:44 +000032 <build>
33 <plugins>
34 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000035 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000036 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch76b0b322009-09-15 11:21:30 +000037 <version>2.0.0</version>
Michael E. Rodriguez75c32682006-03-30 22:39:10 +000038 <extensions>true</extensions>
Alex Karasulu07d20492006-03-06 15:35:44 +000039 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000040 <instructions>
41 <Bundle-Copyright>Copyright 1999,2005 The Apache Software Foundation</Bundle-Copyright>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000042 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Richard S. Hall1da4e542006-11-02 21:45:44 +000043 <Bundle-Category>servlet</Bundle-Category>
44 <Export-Package>javax.servlet;specification-version="2.1",javax.servlet.http;specification-version="2.1"</Export-Package>
45 <Import-Package>!javax.servlet.*,*</Import-Package>
46 </instructions>
Alex Karasulu07d20492006-03-06 15:35:44 +000047 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51</project>