Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 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> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 25 | <groupId>${pom.groupId}</groupId> |
| 26 | <artifactId>javax.servlet</artifactId> |
| 27 | <version>${pom.version}</version> |
| 28 | <scope>provided</scope> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 29 | </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 Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 39 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 40 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 41 | <extensions>true</extensions> |
| 42 | <configuration> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 43 | <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. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 57 | </configuration> |
| 58 | </plugin> |
| 59 | </plugins> |
| 60 | </build> |
| 61 | </project> |