blob: a8e1b558f486bd43c3a9ecfb5d0e89194f0bc120 [file] [log] [blame]
Ken Gilmerd81feba2011-12-15 15:17:16 +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-->
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">
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>2.1</version>
Ken Gilmer5af5ee52012-01-11 00:08:14 +000024 <relativePath>../../pom/pom.xml</relativePath>
Ken Gilmerd81feba2011-12-15 15:17:16 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Ken Gilmerfc10f882012-01-20 01:53:28 +000028 <name>Apache Felix Lightweight HTTP Service Complete</name>
Ken Gilmerd81feba2011-12-15 15:17:16 +000029 <description>A minimal HTTP Service implementation, complete bundle.</description>
30 <version>0.1.3-SNAPSHOT</version>
31 <artifactId>org.apache.felix.httplite.complete</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
Ken Gilmercf74b812012-01-20 01:50:28 +000035 <artifactId>org.apache.felix.httplite.core</artifactId>
Ken Gilmeree3355b2011-12-21 15:09:16 +000036 <version>${project.version}</version>
Ken Gilmerd81feba2011-12-15 15:17:16 +000037 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.core</artifactId>
41 <version>4.2.0</version>
42 </dependency>
43 <dependency>
44 <groupId>org.osgi</groupId>
45 <artifactId>org.osgi.compendium</artifactId>
46 <version>4.2.0</version>
47 </dependency>
48 <dependency>
49 <groupId>javax.servlet</groupId>
50 <artifactId>servlet-api</artifactId>
51 <version>2.4</version>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000052 </dependency>
Ken Gilmerd81feba2011-12-15 15:17:16 +000053 </dependencies>
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
Ken Gilmer90fdfd52011-12-19 22:17:21 +000059 <version>2.3.6</version>
Ken Gilmerd81feba2011-12-15 15:17:16 +000060 <extensions>true</extensions>
61 <configuration>
62 <instructions>
Ken Gilmerd81feba2011-12-15 15:17:16 +000063 <Private-Package>org.apache.felix.httplite.osgi, org.apache.felix.httplite.server, org.apache.felix.httplite.servlet</Private-Package>
64 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmeree3355b2011-12-21 15:09:16 +000065 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Ken Gilmer6ed83ec2011-12-20 18:28:58 +000066 <Bundle-Activator>org.apache.felix.httplite.osgi.Activator</Bundle-Activator>
Ken Gilmerd81feba2011-12-15 15:17:16 +000067 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
68 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
69 <Export-Package>
70 javax.servlet;version="2.4",
71 javax.servlet.http;version="2.4",
Ken Gilmer90fdfd52011-12-19 22:17:21 +000072 org.osgi.service.http;version="1.2"
73 </Export-Package>
Ken Gilmerd81feba2011-12-15 15:17:16 +000074 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
75 </instructions>
76 </configuration>
77 </plugin>
78 </plugins>
79 </build>
80 <scm>
Ken Gilmerad242f32012-01-19 12:47:08 +000081 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite/complete</connection>
82 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite/complete</developerConnection>
83 <url>http://svn.apache.org/repos/asf/felix/trunk/httplite/complete</url>
Ken Gilmerd81feba2011-12-15 15:17:16 +000084 </scm>
Ken Gilmere288d712012-01-08 05:47:06 +000085 <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url>
Ken Gilmerd81feba2011-12-15 15:17:16 +000086</project>