blob: 1dcaf686e7067a15d598a5c9ded88b1d8d4ca612 [file] [log] [blame]
Ken Gilmerf28af952011-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 Gilmer56d74202012-01-11 00:08:14 +000024 <relativePath>../../pom/pom.xml</relativePath>
Ken Gilmerf28af952011-12-15 15:17:16 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Ken Gilmera661e962012-01-20 01:53:28 +000028 <name>Apache Felix Lightweight HTTP Service Complete</name>
Ken Gilmerf28af952011-12-15 15:17:16 +000029 <description>A minimal HTTP Service implementation, complete bundle.</description>
Ken Gilmer4c3a80d2012-01-20 05:46:31 +000030 <version>0.1.5-SNAPSHOT</version>
Ken Gilmerf28af952011-12-15 15:17:16 +000031 <artifactId>org.apache.felix.httplite.complete</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
Ken Gilmercea41c92012-01-20 01:50:28 +000035 <artifactId>org.apache.felix.httplite.core</artifactId>
Ken Gilmer4c3a80d2012-01-20 05:46:31 +000036 <version>0.1.5-SNAPSHOT</version>
Ken Gilmerf28af952011-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 Gilmer5a989602011-12-15 15:55:45 +000052 </dependency>
Ken Gilmerf28af952011-12-15 15:17:16 +000053 </dependencies>
54 <build>
55 <plugins>
56 <plugin>
Ken Gilmer1bdb6ea2012-01-20 02:04:34 +000057 <groupId>org.codehaus.mojo</groupId>
58 <artifactId>animal-sniffer-maven-plugin</artifactId>
59 <version>1.7</version>
60 <configuration>
61 <signature>
62 <groupId>org.codehaus.mojo.signature</groupId>
63 <artifactId>java13-sun</artifactId>
64 <version>1.0</version>
65 </signature>
66 </configuration>
67 <executions>
68 <execution>
69 <phase>test</phase>
70 <goals>
71 <goal>check</goal>
72 </goals>
73 </execution>
74 </executions>
75 </plugin>
76 <plugin>
Ken Gilmerf28af952011-12-15 15:17:16 +000077 <groupId>org.apache.felix</groupId>
78 <artifactId>maven-bundle-plugin</artifactId>
Ken Gilmerf9753402011-12-19 22:17:21 +000079 <version>2.3.6</version>
Ken Gilmerf28af952011-12-15 15:17:16 +000080 <extensions>true</extensions>
81 <configuration>
82 <instructions>
Ken Gilmerf28af952011-12-15 15:17:16 +000083 <Private-Package>org.apache.felix.httplite.osgi, org.apache.felix.httplite.server, org.apache.felix.httplite.servlet</Private-Package>
84 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmera9e308a2011-12-21 15:09:16 +000085 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
Ken Gilmer10dfc322011-12-20 18:28:58 +000086 <Bundle-Activator>org.apache.felix.httplite.osgi.Activator</Bundle-Activator>
Ken Gilmerf28af952011-12-15 15:17:16 +000087 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
88 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
89 <Export-Package>
90 javax.servlet;version="2.4",
91 javax.servlet.http;version="2.4",
Ken Gilmerf9753402011-12-19 22:17:21 +000092 org.osgi.service.http;version="1.2"
93 </Export-Package>
Ken Gilmerf28af952011-12-15 15:17:16 +000094 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
95 </instructions>
96 </configuration>
97 </plugin>
98 </plugins>
99 </build>
100 <scm>
Ken Gilmer4c3a80d2012-01-20 05:46:31 +0000101 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite/complete</connection>
102 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite/complete</developerConnection>
103 <url>http://svn.apache.org/repos/asf/felix/trunk/httplite/complete</url>
Ken Gilmerf28af952011-12-15 15:17:16 +0000104 </scm>
Ken Gilmer54c43082012-01-08 05:47:06 +0000105 <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url>
Ken Gilmerf28af952011-12-15 15:17:16 +0000106</project>