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> |
| 5 | <version>0.8.0-SNAPSHOT</version> |
| 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
| 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> |
| 25 | <groupId>tomcat</groupId> |
Richard S. Hall | a05182a | 2006-04-20 07:17:53 +0000 | [diff] [blame] | 26 | <artifactId>servlet</artifactId> |
| 27 | <version>4.0.6</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 28 | </dependency> |
| 29 | <dependency> |
| 30 | <groupId>jetty</groupId> |
| 31 | <artifactId>org.mortbay.jetty-jdk1.2</artifactId> |
| 32 | <version>4.2.25</version> |
| 33 | </dependency> |
| 34 | </dependencies> |
| 35 | <build> |
| 36 | <plugins> |
| 37 | <plugin> |
| 38 | <groupId>org.apache.felix.plugins</groupId> |
| 39 | <artifactId>maven-osgi-plugin</artifactId> |
| 40 | <version>${pom.version}</version> |
| 41 | <extensions>true</extensions> |
| 42 | <configuration> |
Richard S. Hall | 4942412 | 2006-06-21 16:36:19 +0000 | [diff] [blame] | 43 | <ignorePackage> |
| 44 | com.sun.net.ssl.internal.ssl, |
| 45 | com.sun.net.ssl, |
| 46 | org.xml.sax, |
| 47 | org.xml.sax.helpers, |
| 48 | javax.xml.parsers, |
| 49 | javax.security.cert |
| 50 | </ignorePackage> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 51 | <osgiManifest> |
| 52 | <bundleName>HTTP Service</bundleName> |
| 53 | <bundleDescription>An implementation of the OSGi HTTP Service using Jetty.</bundleDescription> |
Richard S. Hall | 9beb33e | 2006-06-07 13:13:30 +0000 | [diff] [blame] | 54 | <bundleActivator>auto-detect</bundleActivator> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 55 | <bundleDocUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/</bundleDocUrl> |
| 56 | <bundleUrl>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}.jar</bundleUrl> |
| 57 | <bundleSource>http://oscar-osgi.sf.net/obr2/${pom.artifactId}/${pom.artifactId}-${pom.version}-src.jar</bundleSource> |
| 58 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 59 | <dynamicImportPackage>javax.net.ssl</dynamicImportPackage> |
Richard S. Hall | a05182a | 2006-04-20 07:17:53 +0000 | [diff] [blame] | 60 | <exportPackage>org.osgi.service.http; version=1.1,javax.servlet;javax.servlet.http;version=2.3.0</exportPackage> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 61 | <exportService>org.osgi.service.http.HttpService</exportService> |
| 62 | </osgiManifest> |
| 63 | </configuration> |
| 64 | </plugin> |
| 65 | </plugins> |
| 66 | </build> |
| 67 | </project> |