Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 | --> |
| 19 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 20 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
| 21 | |
| 22 | <modelVersion>4.0.0</modelVersion> |
| 23 | <parent> |
| 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>org.apache.felix.http</artifactId> |
| 26 | <version>2.0.0-SNAPSHOT</version> |
| 27 | <relativePath>../pom.xml</relativePath> |
| 28 | </parent> |
| 29 | |
| 30 | <name>Apache Felix Http Jetty</name> |
| 31 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 32 | <packaging>bundle</packaging> |
| 33 | |
| 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.jetty.internal.JettyActivator |
| 43 | </Bundle-Activator> |
| 44 | <Export-Package> |
| 45 | org.apache.felix.http.api;version=${pom.version}, |
| 46 | org.osgi.service.http, |
Sten Roger Sandvik | 2ff416f | 2009-09-24 18:17:47 +0000 | [diff] [blame] | 47 | javax.servlet.*;version=2.5;-split-package:=merge-first |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 48 | </Export-Package> |
| 49 | <Private-Package> |
| 50 | org.apache.felix.http.base.*, |
| 51 | org.apache.felix.http.jetty.*, |
| 52 | org.mortbay.*;-split-package:=merge-first |
| 53 | </Private-Package> |
| 54 | <Import-Package> |
| 55 | javax.net.ssl; javax.security.cert; |
| 56 | javax.xml.parsers; org.xml.sax; |
| 57 | org.xml.sax.helpers; |
| 58 | org.slf4j;resolution:=optional, |
| 59 | *;resolution:=optional |
| 60 | </Import-Package> |
| 61 | </instructions> |
| 62 | </configuration> |
| 63 | </plugin> |
| 64 | </plugins> |
| 65 | </build> |
| 66 | |
| 67 | <dependencies> |
| 68 | <dependency> |
| 69 | <groupId>org.apache.felix</groupId> |
| 70 | <artifactId>org.osgi.compendium</artifactId> |
| 71 | <scope>provided</scope> |
| 72 | </dependency> |
| 73 | <dependency> |
Sten Roger Sandvik | 2ff416f | 2009-09-24 18:17:47 +0000 | [diff] [blame] | 74 | <groupId>javax.servlet</groupId> |
| 75 | <artifactId>servlet-api</artifactId> |
| 76 | <version>2.5</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 77 | </dependency> |
| 78 | <dependency> |
| 79 | <groupId>org.mortbay.jetty</groupId> |
| 80 | <artifactId>jetty</artifactId> |
Sten Roger Sandvik | 2ff416f | 2009-09-24 18:17:47 +0000 | [diff] [blame] | 81 | <version>6.1.21</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>org.mortbay.jetty</groupId> |
| 85 | <artifactId>jetty-util</artifactId> |
Sten Roger Sandvik | 2ff416f | 2009-09-24 18:17:47 +0000 | [diff] [blame] | 86 | <version>6.1.21</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 87 | </dependency> |
| 88 | <dependency> |
| 89 | <groupId>org.mortbay.jetty</groupId> |
| 90 | <artifactId>jetty-sslengine</artifactId> |
Sten Roger Sandvik | 2ff416f | 2009-09-24 18:17:47 +0000 | [diff] [blame] | 91 | <version>6.1.21</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 92 | </dependency> |
| 93 | <dependency> |
| 94 | <groupId>${pom.groupId}</groupId> |
| 95 | <artifactId>org.apache.felix.http.api</artifactId> |
| 96 | <version>${pom.version}</version> |
| 97 | <scope>provided</scope> |
| 98 | </dependency> |
| 99 | <dependency> |
| 100 | <groupId>${pom.groupId}</groupId> |
| 101 | <artifactId>org.apache.felix.http.base</artifactId> |
| 102 | <version>${pom.version}</version> |
| 103 | <scope>provided</scope> |
| 104 | </dependency> |
| 105 | </dependencies> |
| 106 | |
| 107 | </project> |