Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +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 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 Gilmer | 56d7420 | 2012-01-11 00:08:14 +0000 | [diff] [blame] | 24 | <relativePath>../../pom/pom.xml</relativePath> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <packaging>bundle</packaging> |
Ken Gilmer | a661e96 | 2012-01-20 01:53:28 +0000 | [diff] [blame] | 28 | <name>Apache Felix Lightweight HTTP Service Complete</name> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 29 | <description>A minimal HTTP Service implementation, complete bundle.</description> |
Ken Gilmer | 4c3a80d | 2012-01-20 05:46:31 +0000 | [diff] [blame] | 30 | <version>0.1.5-SNAPSHOT</version> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 31 | <artifactId>org.apache.felix.httplite.complete</artifactId> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.felix</groupId> |
Ken Gilmer | cea41c9 | 2012-01-20 01:50:28 +0000 | [diff] [blame] | 35 | <artifactId>org.apache.felix.httplite.core</artifactId> |
Ken Gilmer | 4c3a80d | 2012-01-20 05:46:31 +0000 | [diff] [blame] | 36 | <version>0.1.5-SNAPSHOT</version> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 37 | </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 Gilmer | 5a98960 | 2011-12-15 15:55:45 +0000 | [diff] [blame] | 52 | </dependency> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 53 | </dependencies> |
| 54 | <build> |
| 55 | <plugins> |
| 56 | <plugin> |
Ken Gilmer | 1bdb6ea | 2012-01-20 02:04:34 +0000 | [diff] [blame] | 57 | <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 Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 77 | <groupId>org.apache.felix</groupId> |
| 78 | <artifactId>maven-bundle-plugin</artifactId> |
Ken Gilmer | f975340 | 2011-12-19 22:17:21 +0000 | [diff] [blame] | 79 | <version>2.3.6</version> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 80 | <extensions>true</extensions> |
| 81 | <configuration> |
| 82 | <instructions> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 83 | <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 Gilmer | a9e308a | 2011-12-21 15:09:16 +0000 | [diff] [blame] | 85 | <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName> |
Ken Gilmer | 10dfc32 | 2011-12-20 18:28:58 +0000 | [diff] [blame] | 86 | <Bundle-Activator>org.apache.felix.httplite.osgi.Activator</Bundle-Activator> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 87 | <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 Gilmer | f975340 | 2011-12-19 22:17:21 +0000 | [diff] [blame] | 92 | org.osgi.service.http;version="1.2" |
| 93 | </Export-Package> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 94 | <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 Gilmer | 4c3a80d | 2012-01-20 05:46:31 +0000 | [diff] [blame] | 101 | <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 Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 104 | </scm> |
Ken Gilmer | 54c4308 | 2012-01-08 05:47:06 +0000 | [diff] [blame] | 105 | <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url> |
Ken Gilmer | f28af95 | 2011-12-15 15:17:16 +0000 | [diff] [blame] | 106 | </project> |