blob: ad5e7f4628ddbcd004316f5003d4effe6ae87c57 [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>
59 </dependencies>
60 <build>
61 <plugins>
62 <plugin>
63 <groupId>org.apache.felix</groupId>
64 <artifactId>maven-bundle-plugin</artifactId>
65 <extensions>true</extensions>
66 <configuration>
67 <instructions>
68 <Bundle-Name>HTTP Service</Bundle-Name>
69 <Bundle-Description>
70 An implementation of the OSGi HTTP Service
71 using Jetty.
72 </Bundle-Description>
73 <Bundle-Activator>
74 ${pom.artifactId}.Activator
75 </Bundle-Activator>
76 <Bundle-DocURL>
77 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/
78 </Bundle-DocURL>
79 <Bundle-URL>
80 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar
81 </Bundle-URL>
82 <Bundle-Source>
83 http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar
84 </Bundle-Source>
85 <Bundle-SymbolicName>
86 ${pom.artifactId}
87 </Bundle-SymbolicName>
88 <Export-Package>
89 org.osgi.service.http; version=1.1,
90 javax.servlet;javax.servlet.http;version=2.5
91 </Export-Package>
92 <Private-Package>
93 org.apache.felix.http.jetty,
94 org.mortbay.*;-split-package:=merge-first
95 </Private-Package>
96 <Import-Package>
97 javax.net.ssl; javax.security.cert;
98 javax.xml.parsers; org.xml.sax;
99 org.xml.sax.helpers;
100 org.slf4j;resolution:=optional, *
101 </Import-Package>
102 <Export-Service>
103 org.osgi.service.http.HttpService
104 </Export-Service>
105 </instructions>
106 </configuration>
107 </plugin>
108 </plugins>
109 </build>
Richard S. Hallfe8e5602006-04-19 15:23:22 +0000110</project>