blob: 1066ac290fd2b47cdbf1087e2bc0ababf67dfa23 [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>
Rob Walkerd4c7d472010-05-04 12:02:42 +000030 <version>1.1.1-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>
Rob Walkerd4c7d472010-05-04 12:02:42 +000050 <!--
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000051 <dependency>
52 <groupId>org.mortbay.jetty</groupId>
53 <artifactId>servlet-api-2.5</artifactId>
Marcel Offermans662d4e32009-01-27 19:34:29 +000054 <version>6.1.14</version>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000055 </dependency>
Rob Walkerd4c7d472010-05-04 12:02:42 +000056 -->
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000057 <dependency>
58 <groupId>org.mortbay.jetty</groupId>
59 <artifactId>jetty</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +000060 <version>6.1.24</version>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000061 </dependency>
Felix Meschberger9837c2e2008-03-31 06:23:20 +000062 <dependency>
63 <groupId>org.mortbay.jetty</groupId>
64 <artifactId>jetty-util</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +000065 <version>6.1.24</version>
Marcel Offermans662d4e32009-01-27 19:34:29 +000066 </dependency>
67 <dependency>
68 <groupId>org.mortbay.jetty</groupId>
69 <artifactId>jetty-sslengine</artifactId>
Rob Walkerd4c7d472010-05-04 12:02:42 +000070 <version>6.1.24</version>
Felix Meschberger9837c2e2008-03-31 06:23:20 +000071 </dependency>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000072 </dependencies>
73 <build>
74 <plugins>
Marcel Offermans662d4e32009-01-27 19:34:29 +000075 <plugin>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000076 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-bundle-plugin</artifactId>
78 <extensions>true</extensions>
79 <configuration>
80 <instructions>
Richard S. Hall79d6c0e2009-07-13 13:07:21 +000081 <Bundle-Name>Apache Felix HTTP Service Jetty</Bundle-Name>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000082 <Bundle-Description>
83 An implementation of the OSGi HTTP Service
84 using Jetty.
85 </Bundle-Description>
86 <Bundle-Activator>
87 ${pom.artifactId}.Activator
88 </Bundle-Activator>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000089 <Bundle-SymbolicName>
90 ${pom.artifactId}
91 </Bundle-SymbolicName>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000092 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000093 <Export-Package>
Richard S. Hall025b6232009-06-12 16:18:56 +000094 org.osgi.service.http,
Felix Meschbergerc7ee0152008-03-26 09:24:35 +000095 javax.servlet;javax.servlet.http;version=2.5
96 </Export-Package>
97 <Private-Package>
98 org.apache.felix.http.jetty,
99 org.mortbay.*;-split-package:=merge-first
100 </Private-Package>
101 <Import-Package>
102 javax.net.ssl; javax.security.cert;
103 javax.xml.parsers; org.xml.sax;
104 org.xml.sax.helpers;
105 org.slf4j;resolution:=optional, *
106 </Import-Package>
107 <Export-Service>
108 org.osgi.service.http.HttpService
109 </Export-Service>
Clement Escoffier94e552a2009-03-30 07:40:36 +0000110 <Include-Resource>
111 META-INF/LICENCE=LICENSE,
112 META-INF/NOTICE=NOTICE
113 </Include-Resource>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +0000114 </instructions>
115 </configuration>
116 </plugin>
Clement Escoffier94e552a2009-03-30 07:40:36 +0000117 <plugin>
118 <groupId>org.codehaus.mojo</groupId>
119 <artifactId>rat-maven-plugin</artifactId>
120 <configuration>
121 <excludeSubProjects>false</excludeSubProjects>
122 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
123 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
124 <excludes>
125 <param>doc/*</param>
126 <param>maven-eclipse.xml</param>
127 <param>.checkstyle</param>
128 <param>.externalToolBuilders/*</param>
129 </excludes>
130 </configuration>
131 </plugin>
Felix Meschbergerc7ee0152008-03-26 09:24:35 +0000132 </plugins>
133 </build>
Richard S. Hallfe8e5602006-04-19 15:23:22 +0000134</project>