| <project> |
| <parent> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>felix</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <relativePath>../pom/pom.xml</relativePath> |
| </parent> |
| <modelVersion>4.0.0</modelVersion> |
| <packaging>bundle</packaging> |
| <name>Apache Felix HTTP Service</name> |
| <version>0.9.0-SNAPSHOT</version> |
| <artifactId>org.apache.felix.http.jetty</artifactId> |
| <dependencies> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.core</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>org.osgi.compendium</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>${pom.groupId}</groupId> |
| <artifactId>javax.servlet</artifactId> |
| <version>0.9.0-SNAPSHOT</version> |
| <scope>provided</scope> |
| </dependency> |
| <dependency> |
| <groupId>jetty</groupId> |
| <artifactId>org.mortbay.jetty-jdk1.2</artifactId> |
| <version>4.2.25</version> |
| </dependency> |
| </dependencies> |
| <build> |
| <plugins> |
| <plugin> |
| <groupId>org.apache.felix</groupId> |
| <artifactId>maven-bundle-plugin</artifactId> |
| <version>1.1.0-SNAPSHOT</version> |
| <extensions>true</extensions> |
| <configuration> |
| <instructions> |
| <Bundle-Name>HTTP Service</Bundle-Name> |
| <Bundle-Description>An implementation of the OSGi HTTP Service using Jetty.</Bundle-Description> |
| <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator> |
| <Bundle-DocURL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</Bundle-DocURL> |
| <Bundle-URL>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</Bundle-URL> |
| <Bundle-Source>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</Bundle-Source> |
| <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| <DynamicImport-Package>javax.net.ssl</DynamicImport-Package> |
| <Export-Package>org.osgi.service.http; version=1.1</Export-Package> |
| <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> |
| <Private-Package>org.apache.felix.http.jetty, org.mortbay.*</Private-Package> |
| <Export-Service>org.osgi.service.http.HttpService</Export-Service> |
| </instructions> |
| </configuration> |
| </plugin> |
| </plugins> |
| </build> |
| </project> |