blob: 2ac33aea534c80dcd928fc5e02684a5b5333116b [file] [log] [blame]
Ken Gilmerd709bf12011-10-13 05:01:42 +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-->
Ken Gilmer4399d2d2011-11-21 02:42:46 +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">
Ken Gilmer83092c12011-10-13 05:59:54 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Ken Gilmer9beb6b02011-11-28 02:11:12 +000023 <version>2.1</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000024 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Ken Gilmer05d1e922011-10-25 06:17:27 +000028 <name>Apache Felix Lightweight HTTP Server</name>
Ken Gilmer83092c12011-10-13 05:59:54 +000029 <description>A minimal HTTP Service implementation.</description>
Ken Gilmera9953832011-12-01 07:25:58 +000030 <version>0.1.3-SNAPSHOT</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000031 <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 Gilmer2460ddc2011-11-21 04:28:29 +000058 <Export-Package />
Ken Gilmerccc45b52011-11-21 04:20:36 +000059 <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 Gilmer83092c12011-10-13 05:59:54 +000061 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Ken Gilmerccc45b52011-11-21 04:20:36 +000062 <Bundle-Activator>${pom.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer83092c12011-10-13 05:59:54 +000063 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmer8ea81412011-12-01 07:16:06 +000064 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Ken Gilmerccc45b52011-11-21 04:20:36 +000065 <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 Gilmer2460ddc2011-11-21 04:28:29 +000074 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
Ken Gilmer83092c12011-10-13 05:59:54 +000075 </instructions>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
Ken Gilmer616eac32011-12-01 06:43:40 +000080 <scm>
Ken Gilmera9953832011-12-01 07:25:58 +000081 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite</connection>
82 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite</developerConnection>
83 <url>http://svn.apache.org/repos/asf/felix/trunk/httplite</url>
Ken Gilmer616eac32011-12-01 06:43:40 +000084 </scm>
Ken Gilmerd709bf12011-10-13 05:01:42 +000085</project>