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> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.http.parent</artifactId> |
| 25 | <version>1-SNAPSHOT</version> |
| 26 | <relativePath>../parent/pom.xml</relativePath> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Base</name> |
| 30 | <artifactId>org.apache.felix.http.base</artifactId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 31 | <version>2.2.1-SNAPSHOT</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 32 | <packaging>jar</packaging> |
| 33 | |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
| 37 | <groupId>org.apache.felix</groupId> |
| 38 | <artifactId>maven-bundle-plugin</artifactId> |
| 39 | <configuration> |
| 40 | <instructions> |
| 41 | <Private-Package> |
| 42 | org.apache.felix.http.base.* |
| 43 | </Private-Package> |
| 44 | <Import-Package> |
| 45 | *;resolution:=optional |
| 46 | </Import-Package> |
| 47 | </instructions> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 53 | <dependencies> |
| 54 | <dependency> |
| 55 | <groupId>javax.servlet</groupId> |
| 56 | <artifactId>servlet-api</artifactId> |
| 57 | <scope>provided</scope> |
| 58 | </dependency> |
| 59 | <dependency> |
Richard S. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 60 | <groupId>org.osgi</groupId> |
| 61 | <artifactId>org.osgi.core</artifactId> |
Felix Meschberger | bc271db | 2012-09-27 19:31:49 +0000 | [diff] [blame] | 62 | <version>4.2.0</version> |
Richard S. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 63 | <scope>provided</scope> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.osgi</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 67 | <artifactId>org.osgi.compendium</artifactId> |
| 68 | <scope>provided</scope> |
| 69 | </dependency> |
| 70 | <dependency> |
| 71 | <groupId>${pom.groupId}</groupId> |
| 72 | <artifactId>org.apache.felix.http.api</artifactId> |
Felix Meschberger | bc271db | 2012-09-27 19:31:49 +0000 | [diff] [blame] | 73 | <version>2.2.0</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 74 | </dependency> |
| 75 | </dependencies> |
| 76 | |
| 77 | </project> |