blob: b118dd2fdd1474a3d9971fe0101390b593d3ad76 [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000011 <version>0.9.0-SNAPSHOT</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000012 <artifactId>org.apache.felix.http.jetty</artifactId>
13 <dependencies>
14 <dependency>
15 <groupId>${pom.groupId}</groupId>
16 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000017 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000018 <scope>provided</scope>
19 </dependency>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000023 <version>0.9.0-SNAPSHOT</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000024 <scope>provided</scope>
25 </dependency>
26 <dependency>
Karl Pauls84957a52007-05-14 21:55:49 +000027 <groupId>${pom.groupId}</groupId>
28 <artifactId>javax.servlet</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000029 <version>0.9.0-SNAPSHOT</version>
Karl Pauls84957a52007-05-14 21:55:49 +000030 <scope>provided</scope>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000031 </dependency>
32 <dependency>
33 <groupId>jetty</groupId>
34 <artifactId>org.mortbay.jetty-jdk1.2</artifactId>
35 <version>4.2.25</version>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
Karl Pauls84957a52007-05-14 21:55:49 +000041 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000042 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>1.1.0-SNAPSHOT</version>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000044 <extensions>true</extensions>
45 <configuration>
Karl Pauls84957a52007-05-14 21:55:49 +000046 <instructions>
47 <Bundle-Name>HTTP Service</Bundle-Name>
48 <Bundle-Description>An implementation of the OSGi HTTP Service using Jetty.</Bundle-Description>
49 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
50 <Bundle-DocURL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</Bundle-DocURL>
51 <Bundle-URL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-URL>
52 <Bundle-Source>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source>
53 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
54 <DynamicImport-Package>javax.net.ssl</DynamicImport-Package>
55 <Export-Package>org.osgi.service.http; version=1.1</Export-Package>
56 <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>
57 <Private-Package>org.apache.felix.http.jetty, org.mortbay.*</Private-Package>
58 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
59 </instructions>
Richard S. Hallfe8e5602006-04-19 15:23:22 +000060 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>