Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +0000 | [diff] [blame] | 1 | <!-- |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 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 | |
Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 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. |
Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +0000 | [diff] [blame] | 18 | --> |
Carsten Ziegeler | 4fec096 | 2008-01-11 16:13:31 +0000 | [diff] [blame] | 19 | <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 Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 20 | <parent> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 21 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 22 | <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> |
Rob Walker | 48cb243 | 2008-10-13 14:30:43 +0000 | [diff] [blame] | 52 | <version>6.1.12.rc3</version> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>org.mortbay.jetty</groupId> |
| 56 | <artifactId>jetty</artifactId> |
Rob Walker | 48cb243 | 2008-10-13 14:30:43 +0000 | [diff] [blame] | 57 | <version>6.1.12.rc3</version> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 58 | </dependency> |
Felix Meschberger | 9837c2e | 2008-03-31 06:23:20 +0000 | [diff] [blame] | 59 | <dependency> |
| 60 | <groupId>org.mortbay.jetty</groupId> |
| 61 | <artifactId>jetty-util</artifactId> |
Rob Walker | 48cb243 | 2008-10-13 14:30:43 +0000 | [diff] [blame] | 62 | <version>6.1.12.rc3</version> |
Felix Meschberger | 9837c2e | 2008-03-31 06:23:20 +0000 | [diff] [blame] | 63 | </dependency> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 64 | </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 Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 93 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 94 | <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. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 116 | </project> |