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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 10 | <name>Apache Felix HTTP Service</name> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 11 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 12 | <artifactId>org.apache.felix.http.jetty</artifactId> |
| 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>${pom.groupId}</groupId> |
| 16 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 17 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.osgi.compendium</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 23 | <version>0.9.0-SNAPSHOT</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | <dependency> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 27 | <groupId>${pom.groupId}</groupId> |
| 28 | <artifactId>javax.servlet</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 29 | <version>0.9.0-SNAPSHOT</version> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 30 | <scope>provided</scope> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 31 | </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 Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 41 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 42 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 43 | <version>1.1.0-SNAPSHOT</version> |
Richard S. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 44 | <extensions>true</extensions> |
| 45 | <configuration> |
Karl Pauls | 84957a5 | 2007-05-14 21:55:49 +0000 | [diff] [blame] | 46 | <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. Hall | fe8e560 | 2006-04-19 15:23:22 +0000 | [diff] [blame] | 60 | </configuration> |
| 61 | </plugin> |
| 62 | </plugins> |
| 63 | </build> |
| 64 | </project> |