blob: 4da8638542e2e576974cc05ace25d370d402881c [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
Felix Meschbergerc7ee0152008-03-26 09:24:35 +00002 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
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +000010 http://www.apache.org/licenses/LICENSE-2.0
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000011
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.
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +000018-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +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">
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000020 <parent>
Karl Pauls84957a52007-05-14 21:55:49 +000021 <groupId>org.apache.felix</groupId>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix HTTP Service</name>
29 <version>0.9.0-SNAPSHOT</version>
30 <artifactId>org.apache.felix.http.jetty</artifactId>
31 <dependencies>
32 <dependency>
33 <groupId>${pom.groupId}</groupId>
34 <artifactId>org.osgi.core</artifactId>
35 <version>1.0.0</version>
36 <scope>provided</scope>
37 </dependency>
38 <dependency>
39 <groupId>${pom.groupId}</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
41 <version>1.0.0</version>
42 <exclusions>
43 <exclusion>
44 <groupId>${pom.groupId}</groupId>
45 <artifactId>javax.servlet</artifactId>
46 </exclusion>
47 </exclusions>
48 </dependency>
49 <dependency>
50 <groupId>org.mortbay.jetty</groupId>
51 <artifactId>servlet-api-2.5</artifactId>
52 <version>6.1.7</version>
53 </dependency>
54 <dependency>
55 <groupId>org.mortbay.jetty</groupId>
56 <artifactId>jetty</artifactId>
57 <version>6.1.7</version>
58 </dependency>
Felix Meschberger9837c2e2008-03-31 06:23:20 +000059 <dependency>
60 <groupId>org.mortbay.jetty</groupId>
61 <artifactId>jetty-util</artifactId>
62 <version>6.1.7</version>
63 </dependency>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000064 </dependencies>
65 <build>
66 <plugins>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-bundle-plugin</artifactId>
70 <extensions>true</extensions>
71 <configuration>
72 <instructions>
73 <Bundle-Name>HTTP Service</Bundle-Name>
74 <Bundle-Description>
75 An implementation of the OSGi HTTP Service
76 using Jetty.
77 </Bundle-Description>
78 <Bundle-Activator>
79 ${pom.artifactId}.Activator
80 </Bundle-Activator>
81 <Bundle-DocURL>
82 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/
83 </Bundle-DocURL>
84 <Bundle-URL>
85 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar
86 </Bundle-URL>
87 <Bundle-Source>
88 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar
89 </Bundle-Source>
90 <Bundle-SymbolicName>
91 ${pom.artifactId}
92 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000093 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000094 <Export-Package>
95 org.osgi.service.http; version=1.1,
96 javax.servlet;javax.servlet.http;version=2.5
97 </Export-Package>
98 <Private-Package>
99 org.apache.felix.http.jetty,
100 org.mortbay.*;-split-package:=merge-first
101 </Private-Package>
102 <Import-Package>
103 javax.net.ssl; javax.security.cert;
104 javax.xml.parsers; org.xml.sax;
105 org.xml.sax.helpers;
106 org.slf4j;resolution:=optional, *
107 </Import-Package>
108 <Export-Service>
109 org.osgi.service.http.HttpService
110 </Export-Service>
111 </instructions>
112 </configuration>
113 </plugin>
114 </plugins>
115 </build>
Richard S. Hallfe8e5602006-04-19 15:23:22 +0000116</project>