Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +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 | --> |
Sten Roger Sandvik | ee4dd85 | 2009-09-28 20:30:00 +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"> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
| 24 | <artifactId>org.apache.felix.http</artifactId> |
Felix Meschberger | 6e8e0e9 | 2011-01-26 14:51:56 +0000 | [diff] [blame] | 25 | <version>2.2.1-SNAPSHOT</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 26 | <relativePath>../pom.xml</relativePath> |
| 27 | </parent> |
| 28 | |
Sten Roger Sandvik | 4dbf1d6 | 2009-09-24 17:20:25 +0000 | [diff] [blame] | 29 | <name>Apache Felix Http Bundle</name> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 30 | <artifactId>org.apache.felix.http.bundle</artifactId> |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 31 | <packaging>jar</packaging> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 32 | |
| 33 | <build> |
| 34 | <plugins> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-bundle-plugin</artifactId> |
| 38 | <configuration> |
| 39 | <instructions> |
| 40 | <Bundle-Activator> |
| 41 | org.apache.felix.http.bundle.internal.CombinedActivator |
| 42 | </Bundle-Activator> |
| 43 | <Export-Package> |
Felix Meschberger | d43457d | 2011-01-25 10:36:07 +0000 | [diff] [blame] | 44 | org.apache.felix.http.api;version=2.0.4;-split-package:=merge-first, |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 45 | org.osgi.service.http;version=1.2.0;-split-package:=merge-first, |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 46 | org.cometd;version=1.0.beta7, |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 47 | javax.servlet.*;version=2.5;-split-package:=merge-first |
| 48 | </Export-Package> |
| 49 | <Private-Package> |
| 50 | org.apache.felix.http.base.*;-split-package:=merge-first, |
| 51 | org.apache.felix.http.bridge.*, |
| 52 | org.apache.felix.http.bundle.*, |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 53 | org.apache.felix.http.cometd.*, |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 54 | org.apache.felix.http.jetty.*, |
| 55 | org.apache.felix.http.whiteboard.*, |
| 56 | org.mortbay.*;-split-package:=merge-first |
| 57 | </Private-Package> |
| 58 | <Import-Package> |
| 59 | javax.servlet.*, |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 60 | org.cometd, |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 61 | *;resolution:=optional |
| 62 | </Import-Package> |
| 63 | </instructions> |
| 64 | </configuration> |
| 65 | </plugin> |
| 66 | </plugins> |
| 67 | </build> |
| 68 | |
| 69 | <dependencies> |
| 70 | <dependency> |
| 71 | <groupId>javax.servlet</groupId> |
| 72 | <artifactId>servlet-api</artifactId> |
| 73 | <scope>provided</scope> |
| 74 | </dependency> |
| 75 | <dependency> |
Richard S. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 76 | <groupId>org.osgi</groupId> |
| 77 | <artifactId>org.osgi.core</artifactId> |
| 78 | <scope>provided</scope> |
| 79 | </dependency> |
| 80 | <dependency> |
| 81 | <groupId>org.osgi</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 82 | <artifactId>org.osgi.compendium</artifactId> |
| 83 | <scope>provided</scope> |
| 84 | </dependency> |
| 85 | <dependency> |
| 86 | <groupId>${pom.groupId}</groupId> |
| 87 | <artifactId>org.apache.felix.http.bridge</artifactId> |
| 88 | <version>${pom.version}</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 89 | </dependency> |
| 90 | <dependency> |
| 91 | <groupId>${pom.groupId}</groupId> |
Timothy Michael Moloney | 2f6f137 | 2011-03-04 01:56:24 +0000 | [diff] [blame] | 92 | <artifactId>org.apache.felix.http.cometd</artifactId> |
| 93 | <version>${pom.version}</version> |
| 94 | </dependency> |
| 95 | <dependency> |
| 96 | <groupId>${pom.groupId}</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 97 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 98 | <version>${pom.version}</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 99 | </dependency> |
| 100 | <dependency> |
| 101 | <groupId>${pom.groupId}</groupId> |
| 102 | <artifactId>org.apache.felix.http.whiteboard</artifactId> |
| 103 | <version>${pom.version}</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 104 | </dependency> |
| 105 | </dependencies> |
| 106 | |
| 107 | </project> |