Ken Gilmer | 2c29a97 | 2011-10-13 05:01:42 +0000 | [diff] [blame] | 1 | <!-- |
| 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 | --> |
| 19 | <project> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.1</version> |
| 24 | <relativePath>../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
| 28 | <name>Apache Felix Light HTTP Server (httplite)</name> |
| 29 | <description>A minimal HTTP Service implementation.</description> |
| 30 | <artifactId>org.apache.felix.httplite</artifactId> |
| 31 | <dependencies> |
| 32 | <dependency> |
| 33 | <groupId>org.osgi</groupId> |
| 34 | <artifactId>org.osgi.core</artifactId> |
| 35 | <version>4.1.0</version> |
| 36 | </dependency> |
| 37 | <dependency> |
| 38 | <groupId>org.osgi</groupId> |
| 39 | <artifactId>org.osgi.compendium</artifactId> |
| 40 | <version>4.1.0</version> |
| 41 | </dependency> |
| 42 | <dependency> |
| 43 | <groupId>javax.servlet</groupId> |
| 44 | <artifactId>servlet-api</artifactId> |
| 45 | <version>2.4</version> |
| 46 | </dependency> |
| 47 | </dependencies> |
| 48 | <build> |
| 49 | <plugins> |
| 50 | <plugin> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>maven-bundle-plugin</artifactId> |
| 53 | <version>2.3.4</version> |
| 54 | <extensions>true</extensions> |
| 55 | <configuration> |
| 56 | <instructions> |
| 57 | <Private-Package>org.apache.felix.http.lightweight.* |
| 58 | </Private-Package> |
| 59 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 60 | <Bundle-Activator>org.apache.felix.http.lightweight.osgi.Activator |
| 61 | </Bundle-Activator> |
| 62 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
| 63 | <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE</Include-Resource> |
| 64 | </instructions> |
| 65 | </configuration> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | </build> |
Ken Gilmer | 2c29a97 | 2011-10-13 05:01:42 +0000 | [diff] [blame] | 69 | </project> |