blob: ec12b23706e5a517265b494afab46b0292790f1d [file] [log] [blame]
Richard S. Hallfe8e5602006-04-19 15:23:22 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix HTTP Service</name>
10 <artifactId>org.apache.felix.http.jetty</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>tomcat</groupId>
Richard S. Halla05182a2006-04-20 07:17:53 +000026 <artifactId>servlet</artifactId>
27 <version>4.0.6</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000028 </dependency>
29 <dependency>
30 <groupId>jetty</groupId>
31 <artifactId>org.mortbay.jetty-jdk1.2</artifactId>
32 <version>4.2.25</version>
33 </dependency>
34 </dependencies>
35 <build>
36 <plugins>
37 <plugin>
38 <groupId>org.apache.felix.plugins</groupId>
39 <artifactId>maven-osgi-plugin</artifactId>
40 <version>${pom.version}</version>
41 <extensions>true</extensions>
42 <configuration>
Richard S. Hall49424122006-06-21 16:36:19 +000043 <ignorePackage>
44 com.sun.net.ssl.internal.ssl,
45 com.sun.net.ssl,
46 org.xml.sax,
47 org.xml.sax.helpers,
48 javax.xml.parsers,
49 javax.security.cert
50 </ignorePackage>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000051 <osgiManifest>
52 <bundleName>HTTP Service</bundleName>
53 <bundleDescription>An implementation of the OSGi HTTP Service using Jetty.</bundleDescription>
Richard S. Hall9beb33e2006-06-07 13:13:30 +000054 <bundleActivator>auto-detect</bundleActivator>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000055 <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl>
56 <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl>
57 <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource>
58 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000059 <dynamicImportPackage>javax.net.ssl</dynamicImportPackage>
Richard S. Halla05182a2006-04-20 07:17:53 +000060 <exportPackage>org.osgi.service.http; version=1.1,javax.servlet;javax.servlet.http;version=2.3.0</exportPackage>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000061 <exportService>org.osgi.service.http.HttpService</exportService>
62 </osgiManifest>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67</project>