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 | --> |
Ken Gilmer | 4855491 | 2011-11-21 02:42:46 +0000 | [diff] [blame] | 19 | <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"> |
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> |
Ken Gilmer | 3263b95 | 2011-11-28 02:11:12 +0000 | [diff] [blame] | 23 | <version>2.1</version> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 24 | <relativePath>../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
Ken Gilmer | 924b882 | 2011-10-25 06:17:27 +0000 | [diff] [blame] | 28 | <name>Apache Felix Lightweight HTTP Server</name> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 29 | <description>A minimal HTTP Service implementation.</description> |
Ken Gilmer | 96646d4 | 2011-12-01 07:25:38 +0000 | [diff] [blame^] | 30 | <version>0.1.2</version> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 31 | <artifactId>org.apache.felix.httplite</artifactId> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.osgi</groupId> |
| 35 | <artifactId>org.osgi.core</artifactId> |
| 36 | <version>4.1.0</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.osgi</groupId> |
| 40 | <artifactId>org.osgi.compendium</artifactId> |
| 41 | <version>4.1.0</version> |
| 42 | </dependency> |
| 43 | <dependency> |
| 44 | <groupId>javax.servlet</groupId> |
| 45 | <artifactId>servlet-api</artifactId> |
| 46 | <version>2.4</version> |
| 47 | </dependency> |
| 48 | </dependencies> |
| 49 | <build> |
| 50 | <plugins> |
| 51 | <plugin> |
| 52 | <groupId>org.apache.felix</groupId> |
| 53 | <artifactId>maven-bundle-plugin</artifactId> |
| 54 | <version>2.3.4</version> |
| 55 | <extensions>true</extensions> |
| 56 | <configuration> |
| 57 | <instructions> |
Ken Gilmer | fe75308 | 2011-11-21 04:28:29 +0000 | [diff] [blame] | 58 | <Export-Package /> |
Ken Gilmer | 89a7c3e | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 59 | <Private-Package>org.apache.felix.httplite.osgi, org.apache.felix.httplite.server, org.apache.felix.httplite.servlet</Private-Package> |
| 60 | <Export-Service>org.osgi.service.http.HttpService</Export-Service> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 61 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Ken Gilmer | 89a7c3e | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 62 | <Bundle-Activator>${pom.artifactId}.osgi.Activator</Bundle-Activator> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 63 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Ken Gilmer | 3dc0078 | 2011-12-01 07:16:06 +0000 | [diff] [blame] | 64 | <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
Ken Gilmer | 89a7c3e | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 65 | <Import-Package> |
| 66 | javax.servlet;version="2.4", |
| 67 | javax.servlet.http;version="2.4", |
| 68 | org.osgi.service.http;version="1.2", |
| 69 | * |
| 70 | </Import-Package> |
| 71 | <Import-Service> |
| 72 | org.osgi.service.log.LogService;availability:=optional;multiple:=false |
| 73 | </Import-Service> |
Ken Gilmer | fe75308 | 2011-11-21 04:28:29 +0000 | [diff] [blame] | 74 | <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL> |
Ken Gilmer | 76e41a6 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 75 | </instructions> |
| 76 | </configuration> |
| 77 | </plugin> |
| 78 | </plugins> |
| 79 | </build> |
Ken Gilmer | 904b689 | 2011-12-01 06:43:40 +0000 | [diff] [blame] | 80 | <scm> |
Ken Gilmer | 96646d4 | 2011-12-01 07:25:38 +0000 | [diff] [blame^] | 81 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.2</connection> |
| 82 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.2</developerConnection> |
| 83 | <url>http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.2</url> |
Ken Gilmer | 904b689 | 2011-12-01 06:43:40 +0000 | [diff] [blame] | 84 | </scm> |
Ken Gilmer | 2c29a97 | 2011-10-13 05:01:42 +0000 | [diff] [blame] | 85 | </project> |