blob: 1fa5e8e1fd4d358f2362678ef41552dbd6783c59 [file] [log] [blame]
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +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-->
Sten Roger Sandvikee4dd852009-09-28 20:30:00 +000019<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 Sandvik5af73c22009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
24 <artifactId>org.apache.felix.http</artifactId>
Sten Roger Sandvik4ff52b32009-10-01 20:17:34 +000025 <version>2.0.3-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <name>Apache Felix Http Whiteboard</name>
30 <artifactId>org.apache.felix.http.whiteboard</artifactId>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000031 <packaging>jar</packaging>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000032
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.whiteboard.internal.WhiteboardActivator
42 </Bundle-Activator>
43 <Private-Package>
Sten Roger Sandvikeafab792009-09-24 21:12:15 +000044 org.apache.felix.http.api,
Sten Roger Sandvik4dbf1d62009-09-24 17:20:25 +000045 org.apache.felix.http.base.*,
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000046 org.apache.felix.http.whiteboard.*
47 </Private-Package>
48 <Import-Package>
49 javax.servlet.*,
50 org.osgi.service.http.*,
Sten Roger Sandvikeafab792009-09-24 21:12:15 +000051 org.apache.felix.http.api;resolution:=optional,
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000052 *;resolution:=optional
53 </Import-Package>
54 </instructions>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59
60 <dependencies>
61 <dependency>
62 <groupId>javax.servlet</groupId>
63 <artifactId>servlet-api</artifactId>
64 <scope>provided</scope>
65 </dependency>
66 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000067 <groupId>org.osgi</groupId>
68 <artifactId>org.osgi.core</artifactId>
69 <scope>provided</scope>
70 </dependency>
71 <dependency>
72 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000073 <artifactId>org.osgi.compendium</artifactId>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
77 <groupId>${pom.groupId}</groupId>
78 <artifactId>org.apache.felix.http.api</artifactId>
79 <version>${pom.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000080 </dependency>
Sten Roger Sandvik4dbf1d62009-09-24 17:20:25 +000081 <dependency>
82 <groupId>${pom.groupId}</groupId>
83 <artifactId>org.apache.felix.http.base</artifactId>
84 <version>${pom.version}</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000085 </dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000086 </dependencies>
87
88</project>