blob: e02fbca939d6fe96dfcd8778a6ea0366fd33fa5e [file] [log] [blame]
Sten Roger Sandvikc73f7412009-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 Sandvikdad7a6d2009-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 Sandvikc73f7412009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger078b99f2011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
25 <version>1-SNAPSHOT</version>
26 <relativePath>../parent/pom.xml</relativePath>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000027 </parent>
28
Sten Roger Sandvik6f739872009-09-24 17:20:25 +000029 <name>Apache Felix Http Bundle</name>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000030 <artifactId>org.apache.felix.http.bundle</artifactId>
Felix Meschberger078b99f2011-12-05 15:22:27 +000031 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000032 <packaging>jar</packaging>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000033
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
39 <configuration>
40 <instructions>
41 <Bundle-Activator>
42 org.apache.felix.http.bundle.internal.CombinedActivator
43 </Bundle-Activator>
44 <Export-Package>
Felix Meschbergera2899b62011-01-25 10:36:07 +000045 org.apache.felix.http.api;version=2.0.4;-split-package:=merge-first,
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000046 org.osgi.service.http;version=1.2.0;-split-package:=merge-first,
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +000047 org.cometd;version=1.0.beta7,
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000048 javax.servlet.*;version=2.5;-split-package:=merge-first
49 </Export-Package>
50 <Private-Package>
51 org.apache.felix.http.base.*;-split-package:=merge-first,
52 org.apache.felix.http.bridge.*,
53 org.apache.felix.http.bundle.*,
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +000054 org.apache.felix.http.cometd.*,
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000055 org.apache.felix.http.jetty.*,
56 org.apache.felix.http.whiteboard.*,
57 org.mortbay.*;-split-package:=merge-first
58 </Private-Package>
59 <Import-Package>
60 javax.servlet.*,
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +000061 org.cometd,
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000062 *;resolution:=optional
63 </Import-Package>
64 </instructions>
65 </configuration>
66 </plugin>
67 </plugins>
68 </build>
69
70 <dependencies>
71 <dependency>
72 <groupId>javax.servlet</groupId>
73 <artifactId>servlet-api</artifactId>
74 <scope>provided</scope>
75 </dependency>
76 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +000077 <groupId>org.osgi</groupId>
78 <artifactId>org.osgi.core</artifactId>
79 <scope>provided</scope>
80 </dependency>
81 <dependency>
82 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000083 <artifactId>org.osgi.compendium</artifactId>
84 <scope>provided</scope>
85 </dependency>
86 <dependency>
87 <groupId>${pom.groupId}</groupId>
88 <artifactId>org.apache.felix.http.bridge</artifactId>
89 <version>${pom.version}</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000090 </dependency>
91 <dependency>
92 <groupId>${pom.groupId}</groupId>
Timothy Michael Moloney1dbedaa2011-03-04 01:56:24 +000093 <artifactId>org.apache.felix.http.cometd</artifactId>
94 <version>${pom.version}</version>
95 </dependency>
96 <dependency>
97 <groupId>${pom.groupId}</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000098 <artifactId>org.apache.felix.http.jetty</artifactId>
99 <version>${pom.version}</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000100 </dependency>
101 <dependency>
102 <groupId>${pom.groupId}</groupId>
103 <artifactId>org.apache.felix.http.whiteboard</artifactId>
104 <version>${pom.version}</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000105 </dependency>
106 </dependencies>
107
108</project>