blob: 6e6a5a4e708053f88fa3c515a52b7a16c9fbe69c [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>
Felix Meschberger6e8e0e92011-01-26 14:51:56 +000025 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvik5af73c22009-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 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.jetty.internal.JettyActivator
42 </Bundle-Activator>
43 <Export-Package>
Felix Meschbergerd43457d2011-01-25 10:36:07 +000044 org.apache.felix.http.api;version=2.0.4,
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000045 org.osgi.service.http,
Sten Roger Sandvik2ff416f2009-09-24 18:17:47 +000046 javax.servlet.*;version=2.5;-split-package:=merge-first
Sten Roger Sandvik5af73c22009-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>
Felix Meschbergerd7f94332011-01-09 03:39:23 +000060 <DynamicImport-Package>
61 org.osgi.service.cm;version=1.2
62 </DynamicImport-Package>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000063 </instructions>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68
69 <dependencies>
70 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000071 <groupId>org.osgi</groupId>
72 <artifactId>org.osgi.core</artifactId>
73 <scope>provided</scope>
74 </dependency>
75 <dependency>
76 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000077 <artifactId>org.osgi.compendium</artifactId>
78 <scope>provided</scope>
79 </dependency>
80 <dependency>
Sten Roger Sandvik2ff416f2009-09-24 18:17:47 +000081 <groupId>javax.servlet</groupId>
82 <artifactId>servlet-api</artifactId>
83 <version>2.5</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000084 </dependency>
85 <dependency>
86 <groupId>org.mortbay.jetty</groupId>
87 <artifactId>jetty</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +000088 <version>6.1.24</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000089 </dependency>
90 <dependency>
91 <groupId>org.mortbay.jetty</groupId>
92 <artifactId>jetty-util</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +000093 <version>6.1.24</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000094 </dependency>
95 <dependency>
96 <groupId>org.mortbay.jetty</groupId>
Felix Meschberger815934f2011-09-23 13:00:33 +000097 <artifactId>jetty-management</artifactId>
98 <version>6.1.24</version>
99 </dependency>
100 <dependency>
101 <groupId>org.mortbay.jetty</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000102 <artifactId>jetty-sslengine</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +0000103 <version>6.1.24</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000104 </dependency>
105 <dependency>
106 <groupId>${pom.groupId}</groupId>
107 <artifactId>org.apache.felix.http.api</artifactId>
108 <version>${pom.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000109 </dependency>
110 <dependency>
111 <groupId>${pom.groupId}</groupId>
112 <artifactId>org.apache.felix.http.base</artifactId>
113 <version>${pom.version}</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000114 </dependency>
115 </dependencies>
116
117</project>