blob: 20ba3aeb382154b5f887e9db556f3998d73c2417 [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>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Richard S. Hallfe8e5602006-04-19 15:23:22 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Karl Pauls84957a52007-05-14 21:55:49 +00009 <packaging>bundle</packaging>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000010 <name>Apache Felix HTTP Service</name>
11 <artifactId>org.apache.felix.http.jetty</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
15 <artifactId>org.osgi.core</artifactId>
16 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.osgi.compendium</artifactId>
22 <version>${pom.version}</version>
23 <scope>provided</scope>
24 </dependency>
25 <dependency>
Karl Pauls84957a52007-05-14 21:55:49 +000026 <groupId>${pom.groupId}</groupId>
27 <artifactId>javax.servlet</artifactId>
28 <version>${pom.version}</version>
29 <scope>provided</scope>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000030 </dependency>
31 <dependency>
32 <groupId>jetty</groupId>
33 <artifactId>org.mortbay.jetty-jdk1.2</artifactId>
34 <version>4.2.25</version>
35 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
Karl Pauls84957a52007-05-14 21:55:49 +000040 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000041 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000042 <extensions>true</extensions>
43 <configuration>
Karl Pauls84957a52007-05-14 21:55:49 +000044 <instructions>
45 <Bundle-Name>HTTP Service</Bundle-Name>
46 <Bundle-Description>An implementation of the OSGi HTTP Service using Jetty.</Bundle-Description>
47 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
48 <Bundle-DocURL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</Bundle-DocURL>
49 <Bundle-URL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-URL>
50 <Bundle-Source>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source>
51 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
52 <DynamicImport-Package>javax.net.ssl</DynamicImport-Package>
53 <Export-Package>org.osgi.service.http; version=1.1</Export-Package>
54 <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>
55 <Private-Package>org.apache.felix.http.jetty, org.mortbay.*</Private-Package>
56 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
57 </instructions>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000058 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>