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"> |
Richard S. Hall | 854f178 | 2009-06-23 20:29:24 +0000 | [diff] [blame] | 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix-parent</artifactId> |
| 23 | <version>1.2.0</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 25 | </parent> |
Richard S. Hall | 854f178 | 2009-06-23 20:29:24 +0000 | [diff] [blame] | 26 | |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 27 | <modelVersion>4.0.0</modelVersion> |
| 28 | <packaging>bundle</packaging> |
Richard S. Hall | 79d6c0e | 2009-07-13 13:07:21 +0000 | [diff] [blame] | 29 | <name>Apache Felix HTTP Service Jetty</name> |
Richard S. Hall | a960e2f | 2009-06-24 13:40:09 +0000 | [diff] [blame] | 30 | <version>1.1.0-SNAPSHOT</version> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 31 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>${pom.groupId}</groupId> |
| 35 | <artifactId>org.osgi.core</artifactId> |
| 36 | <version>1.0.0</version> |
| 37 | <scope>provided</scope> |
| 38 | </dependency> |
| 39 | <dependency> |
| 40 | <groupId>${pom.groupId}</groupId> |
| 41 | <artifactId>org.osgi.compendium</artifactId> |
| 42 | <version>1.0.0</version> |
| 43 | <exclusions> |
| 44 | <exclusion> |
| 45 | <groupId>${pom.groupId}</groupId> |
| 46 | <artifactId>javax.servlet</artifactId> |
| 47 | </exclusion> |
| 48 | </exclusions> |
| 49 | </dependency> |
| 50 | <dependency> |
| 51 | <groupId>org.mortbay.jetty</groupId> |
| 52 | <artifactId>servlet-api-2.5</artifactId> |
Marcel Offermans | 662d4e3 | 2009-01-27 19:34:29 +0000 | [diff] [blame] | 53 | <version>6.1.14</version> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>org.mortbay.jetty</groupId> |
| 57 | <artifactId>jetty</artifactId> |
Marcel Offermans | 662d4e3 | 2009-01-27 19:34:29 +0000 | [diff] [blame] | 58 | <version>6.1.14</version> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 59 | </dependency> |
Felix Meschberger | 9837c2e | 2008-03-31 06:23:20 +0000 | [diff] [blame] | 60 | <dependency> |
| 61 | <groupId>org.mortbay.jetty</groupId> |
| 62 | <artifactId>jetty-util</artifactId> |
Marcel Offermans | 662d4e3 | 2009-01-27 19:34:29 +0000 | [diff] [blame] | 63 | <version>6.1.14</version> |
| 64 | </dependency> |
| 65 | <dependency> |
| 66 | <groupId>org.mortbay.jetty</groupId> |
| 67 | <artifactId>jetty-sslengine</artifactId> |
| 68 | <version>6.1.14</version> |
Felix Meschberger | 9837c2e | 2008-03-31 06:23:20 +0000 | [diff] [blame] | 69 | </dependency> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 70 | </dependencies> |
| 71 | <build> |
| 72 | <plugins> |
Marcel Offermans | 662d4e3 | 2009-01-27 19:34:29 +0000 | [diff] [blame] | 73 | <plugin> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 74 | <groupId>org.apache.felix</groupId> |
| 75 | <artifactId>maven-bundle-plugin</artifactId> |
| 76 | <extensions>true</extensions> |
| 77 | <configuration> |
| 78 | <instructions> |
Richard S. Hall | 79d6c0e | 2009-07-13 13:07:21 +0000 | [diff] [blame] | 79 | <Bundle-Name>Apache Felix HTTP Service Jetty</Bundle-Name> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 80 | <Bundle-Description> |
| 81 | An implementation of the OSGi HTTP Service |
| 82 | using Jetty. |
| 83 | </Bundle-Description> |
| 84 | <Bundle-Activator> |
| 85 | ${pom.artifactId}.Activator |
| 86 | </Bundle-Activator> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 87 | <Bundle-SymbolicName> |
| 88 | ${pom.artifactId} |
| 89 | </Bundle-SymbolicName> |
Carsten Ziegeler | cf6e51b | 2008-04-17 06:33:59 +0000 | [diff] [blame] | 90 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 91 | <Export-Package> |
Richard S. Hall | 025b623 | 2009-06-12 16:18:56 +0000 | [diff] [blame] | 92 | org.osgi.service.http, |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 93 | javax.servlet;javax.servlet.http;version=2.5 |
| 94 | </Export-Package> |
| 95 | <Private-Package> |
| 96 | org.apache.felix.http.jetty, |
| 97 | org.mortbay.*;-split-package:=merge-first |
| 98 | </Private-Package> |
| 99 | <Import-Package> |
| 100 | javax.net.ssl; javax.security.cert; |
| 101 | javax.xml.parsers; org.xml.sax; |
| 102 | org.xml.sax.helpers; |
| 103 | org.slf4j;resolution:=optional, * |
| 104 | </Import-Package> |
| 105 | <Export-Service> |
| 106 | org.osgi.service.http.HttpService |
| 107 | </Export-Service> |
Clement Escoffier | 94e552a | 2009-03-30 07:40:36 +0000 | [diff] [blame] | 108 | <Include-Resource> |
| 109 | META-INF/LICENCE=LICENSE, |
| 110 | META-INF/NOTICE=NOTICE |
| 111 | </Include-Resource> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 112 | </instructions> |
| 113 | </configuration> |
| 114 | </plugin> |
Clement Escoffier | 94e552a | 2009-03-30 07:40:36 +0000 | [diff] [blame] | 115 | <plugin> |
| 116 | <groupId>org.codehaus.mojo</groupId> |
| 117 | <artifactId>rat-maven-plugin</artifactId> |
| 118 | <configuration> |
| 119 | <excludeSubProjects>false</excludeSubProjects> |
| 120 | <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes> |
| 121 | <useMavenDefaultExcludes>true</useMavenDefaultExcludes> |
| 122 | <excludes> |
| 123 | <param>doc/*</param> |
| 124 | <param>maven-eclipse.xml</param> |
| 125 | <param>.checkstyle</param> |
| 126 | <param>.externalToolBuilders/*</param> |
| 127 | </excludes> |
| 128 | </configuration> |
| 129 | </plugin> |
Felix Meschberger | c7ee015 | 2008-03-26 09:24:35 +0000 | [diff] [blame] | 130 | </plugins> |
| 131 | </build> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 132 | </project> |