blob: e720c3ffcc962bd812be9d097b3100e10bebb8b3 [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>
Karl Pauls84957a52007-05-14 21:55:49 +00008 <packaging>bundle</packaging>
Richard S. Hallfe8e5602006-04-19 15:23:22 +00009 <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>
Karl Pauls84957a52007-05-14 21:55:49 +000025 <groupId>${pom.groupId}</groupId>
26 <artifactId>javax.servlet</artifactId>
27 <version>${pom.version}</version>
28 <scope>provided</scope>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000029 </dependency>
30 <dependency>
31 <groupId>jetty</groupId>
32 <artifactId>org.mortbay.jetty-jdk1.2</artifactId>
33 <version>4.2.25</version>
34 </dependency>
35 </dependencies>
36 <build>
37 <plugins>
38 <plugin>
Karl Pauls84957a52007-05-14 21:55:49 +000039 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000040 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000041 <extensions>true</extensions>
42 <configuration>
Karl Pauls84957a52007-05-14 21:55:49 +000043 <instructions>
44 <Bundle-Name>HTTP Service</Bundle-Name>
45 <Bundle-Description>An implementation of the OSGi HTTP Service using Jetty.</Bundle-Description>
46 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
47 <Bundle-DocURL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</Bundle-DocURL>
48 <Bundle-URL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-URL>
49 <Bundle-Source>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source>
50 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
51 <DynamicImport-Package>javax.net.ssl</DynamicImport-Package>
52 <Export-Package>org.osgi.service.http; version=1.1</Export-Package>
53 <Import-Package>!com.sun.net.ssl.internal.ssl,!com.sun.net.ssl,!org.xml.sax,!org.xml.sax.helpers,!javax.xml.parsers,!javax.security.cert,javax.servlet;version=1.1, javax.servlet.http;version=1.1,*</Import-Package>
54 <Private-Package>org.apache.felix.http.jetty, org.mortbay.*</Private-Package>
55 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
56 </instructions>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000057 </configuration>
58 </plugin>
59 </plugins>
60 </build>
61</project>