blob: 02f4ee39715a0e5dc34ea0728773a89c53eabd2b [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
Felix Meschbergerc7ee0152008-03-26 09:24:35 +00002 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 Ziegelerc19e17c2008-01-03 09:15:17 +000010 http://www.apache.org/licenses/LICENSE-2.0
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000011
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 Ziegelerc19e17c2008-01-03 09:15:17 +000018-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +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">
Richard S. Hall854f1782009-06-23 20:29:24 +000020 <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 Meschbergerc7ee0152008-03-26 09:24:35 +000025 </parent>
Richard S. Hall854f1782009-06-23 20:29:24 +000026
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000027 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
Richard S. Hall79d6c0e2009-07-13 13:07:21 +000029 <name>Apache Felix HTTP Service Jetty</name>
Richard S. Halla960e2f2009-06-24 13:40:09 +000030 <version>1.1.0-SNAPSHOT</version>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000031 <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 Offermans662d4e32009-01-27 19:34:29 +000053 <version>6.1.14</version>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000054 </dependency>
55 <dependency>
56 <groupId>org.mortbay.jetty</groupId>
57 <artifactId>jetty</artifactId>
Marcel Offermans662d4e32009-01-27 19:34:29 +000058 <version>6.1.14</version>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000059 </dependency>
Felix Meschberger9837c2e2008-03-31 06:23:20 +000060 <dependency>
61 <groupId>org.mortbay.jetty</groupId>
62 <artifactId>jetty-util</artifactId>
Marcel Offermans662d4e32009-01-27 19:34:29 +000063 <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 Meschberger9837c2e2008-03-31 06:23:20 +000069 </dependency>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000070 </dependencies>
71 <build>
72 <plugins>
Marcel Offermans662d4e32009-01-27 19:34:29 +000073 <plugin>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000074 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-bundle-plugin</artifactId>
76 <extensions>true</extensions>
77 <configuration>
78 <instructions>
Richard S. Hall79d6c0e2009-07-13 13:07:21 +000079 <Bundle-Name>Apache Felix HTTP Service Jetty</Bundle-Name>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000080 <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 Meschbergerc7ee0152008-03-26 09:24:35 +000087 <Bundle-SymbolicName>
88 ${pom.artifactId}
89 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000090 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000091 <Export-Package>
Richard S. Hall025b6232009-06-12 16:18:56 +000092 org.osgi.service.http,
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000093 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 Escoffier94e552a2009-03-30 07:40:36 +0000108 <Include-Resource>
109 META-INF/LICENCE=LICENSE,
110 META-INF/NOTICE=NOTICE
111 </Include-Resource>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +0000112 </instructions>
113 </configuration>
114 </plugin>
Clement Escoffier94e552a2009-03-30 07:40:36 +0000115 <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 Meschbergerc7ee0152008-03-26 09:24:35 +0000130 </plugins>
131 </build>
Richard S. Hallfe8e5602006-04-19 15:23:22 +0000132</project>