blob: bf8b5e4ae566d673cf836158bc01c49143a70fa3 [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>
24 <artifactId>org.apache.felix.http</artifactId>
Sten Roger Sandvik6333ee52009-10-01 20:17:34 +000025 <version>2.0.3-SNAPSHOT</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000026 <relativePath>../pom.xml</relativePath>
27 </parent>
28
29 <name>Apache Felix Http Jetty</name>
30 <artifactId>org.apache.felix.http.jetty</artifactId>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000031 <packaging>jar</packaging>
Sten Roger Sandvikc73f7412009-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.jetty.internal.JettyActivator
42 </Bundle-Activator>
43 <Export-Package>
44 org.apache.felix.http.api;version=${pom.version},
45 org.osgi.service.http,
Sten Roger Sandvik4bf00cd2009-09-24 18:17:47 +000046 javax.servlet.*;version=2.5;-split-package:=merge-first
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000047 </Export-Package>
48 <Private-Package>
49 org.apache.felix.http.base.*,
50 org.apache.felix.http.jetty.*,
51 org.mortbay.*;-split-package:=merge-first
52 </Private-Package>
53 <Import-Package>
54 javax.net.ssl; javax.security.cert;
55 javax.xml.parsers; org.xml.sax;
56 org.xml.sax.helpers;
57 org.slf4j;resolution:=optional,
58 *;resolution:=optional
59 </Import-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
65
66 <dependencies>
67 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +000068 <groupId>org.osgi</groupId>
69 <artifactId>org.osgi.core</artifactId>
70 <scope>provided</scope>
71 </dependency>
72 <dependency>
73 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000074 <artifactId>org.osgi.compendium</artifactId>
75 <scope>provided</scope>
76 </dependency>
77 <dependency>
Sten Roger Sandvik4bf00cd2009-09-24 18:17:47 +000078 <groupId>javax.servlet</groupId>
79 <artifactId>servlet-api</artifactId>
80 <version>2.5</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000081 </dependency>
82 <dependency>
83 <groupId>org.mortbay.jetty</groupId>
84 <artifactId>jetty</artifactId>
Sten Roger Sandvik4bf00cd2009-09-24 18:17:47 +000085 <version>6.1.21</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000086 </dependency>
87 <dependency>
88 <groupId>org.mortbay.jetty</groupId>
89 <artifactId>jetty-util</artifactId>
Sten Roger Sandvik4bf00cd2009-09-24 18:17:47 +000090 <version>6.1.21</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000091 </dependency>
92 <dependency>
93 <groupId>org.mortbay.jetty</groupId>
94 <artifactId>jetty-sslengine</artifactId>
Sten Roger Sandvik4bf00cd2009-09-24 18:17:47 +000095 <version>6.1.21</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000096 </dependency>
97 <dependency>
98 <groupId>${pom.groupId}</groupId>
99 <artifactId>org.apache.felix.http.api</artifactId>
100 <version>${pom.version}</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000101 </dependency>
102 <dependency>
103 <groupId>${pom.groupId}</groupId>
104 <artifactId>org.apache.felix.http.base</artifactId>
105 <version>${pom.version}</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +0000106 </dependency>
107 </dependencies>
108
109</project>