Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 1 | <!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor |
| 2 | license agreements. See the NOTICE file distributed with this work for additional |
| 3 | information regarding copyright ownership. The ASF licenses this file to |
| 4 | you under the Apache License, Version 2.0 (the "License"); you may not use |
| 5 | this file except in compliance with the License. You may obtain a copy of |
| 6 | the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required |
| 7 | by applicable law or agreed to in writing, software distributed under the |
| 8 | License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS |
| 9 | OF ANY KIND, either express or implied. See the License for the specific |
| 10 | language governing permissions and limitations under the License. --> |
| 11 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 12 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 13 | <parent> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 14 | <groupId>org.apache.felix</groupId> |
| 15 | <artifactId>felix-parent</artifactId> |
| 16 | <version>2.1</version> |
| 17 | <relativePath>../pom/pom.xml</relativePath> |
| 18 | </parent> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 19 | <modelVersion>4.0.0</modelVersion> |
| 20 | <packaging>bundle</packaging> |
Ken Gilmer | 05d1e92 | 2011-10-25 06:17:27 +0000 | [diff] [blame] | 21 | <name>Apache Felix Lightweight HTTP Server</name> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 22 | <description>A minimal HTTP Service implementation.</description> |
Ken Gilmer | a995383 | 2011-12-01 07:25:58 +0000 | [diff] [blame] | 23 | <version>0.1.3-SNAPSHOT</version> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.httplite</artifactId> |
| 25 | <dependencies> |
| 26 | <dependency> |
| 27 | <groupId>org.osgi</groupId> |
| 28 | <artifactId>org.osgi.core</artifactId> |
Ken Gilmer | 3ea5ed1 | 2011-12-15 15:55:45 +0000 | [diff] [blame] | 29 | <version>4.2.0</version> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 30 | </dependency> |
| 31 | <dependency> |
| 32 | <groupId>org.osgi</groupId> |
| 33 | <artifactId>org.osgi.compendium</artifactId> |
Ken Gilmer | 3ea5ed1 | 2011-12-15 15:55:45 +0000 | [diff] [blame] | 34 | <version>4.2.0</version> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 35 | </dependency> |
| 36 | <dependency> |
| 37 | <groupId>javax.servlet</groupId> |
| 38 | <artifactId>servlet-api</artifactId> |
| 39 | <version>2.4</version> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 40 | </dependency> |
Ken Gilmer | 3ea5ed1 | 2011-12-15 15:55:45 +0000 | [diff] [blame] | 41 | <dependency> |
| 42 | <groupId>junit</groupId> |
| 43 | <artifactId>junit</artifactId> |
| 44 | <version>3.8.1</version> |
| 45 | <scope>test</scope> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 46 | </dependency> |
Ken Gilmer | 3ea5ed1 | 2011-12-15 15:55:45 +0000 | [diff] [blame] | 47 | <dependency> |
| 48 | <groupId>com.googlecode.pojosr</groupId> |
| 49 | <artifactId>de.kalpatec.pojosr.framework</artifactId> |
| 50 | <version>0.1.6</version> |
| 51 | <type>bundle</type> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | <dependency> |
| 55 | <groupId>commons-io</groupId> |
| 56 | <artifactId>commons-io</artifactId> |
| 57 | <version>2.1</version> |
| 58 | <scope>test</scope> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 59 | </dependency> |
| 60 | </dependencies> |
| 61 | <build> |
| 62 | <plugins> |
| 63 | <plugin> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 64 | <groupId>org.apache.maven.plugins</groupId> |
| 65 | <artifactId>maven-compiler-plugin</artifactId> |
| 66 | <version>2.3.2</version> |
| 67 | <configuration> |
| 68 | <source>1.3</source> |
| 69 | <target>1.3</target> |
| 70 | </configuration> |
| 71 | </plugin> |
| 72 | <plugin> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 73 | <groupId>org.apache.felix</groupId> |
| 74 | <artifactId>maven-bundle-plugin</artifactId> |
| 75 | <version>2.3.4</version> |
| 76 | <extensions>true</extensions> |
| 77 | <configuration> |
| 78 | <instructions> |
Ken Gilmer | 2460ddc | 2011-11-21 04:28:29 +0000 | [diff] [blame] | 79 | <Export-Package /> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 80 | <Private-Package>org.apache.felix.httplite.osgi, |
| 81 | org.apache.felix.httplite.server, |
| 82 | org.apache.felix.httplite.servlet</Private-Package> |
Ken Gilmer | ccc45b5 | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 83 | <Export-Service>org.osgi.service.http.HttpService</Export-Service> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 84 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
Ken Gilmer | ccc45b5 | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 85 | <Bundle-Activator>${pom.artifactId}.osgi.Activator</Bundle-Activator> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 86 | <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor> |
Ken Gilmer | 8ea8141 | 2011-12-01 07:16:06 +0000 | [diff] [blame] | 87 | <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource> |
Ken Gilmer | ccc45b5 | 2011-11-21 04:20:36 +0000 | [diff] [blame] | 88 | <Import-Package> |
| 89 | javax.servlet;version="2.4", |
| 90 | javax.servlet.http;version="2.4", |
| 91 | org.osgi.service.http;version="1.2", |
| 92 | * |
| 93 | </Import-Package> |
| 94 | <Import-Service> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 95 | org.osgi.service.log.LogService;availability:=optional;multiple:=false |
| 96 | </Import-Service> |
| 97 | <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL> |
Ken Gilmer | 83092c1 | 2011-10-13 05:59:54 +0000 | [diff] [blame] | 98 | </instructions> |
| 99 | </configuration> |
| 100 | </plugin> |
| 101 | </plugins> |
| 102 | </build> |
Ken Gilmer | 616eac3 | 2011-12-01 06:43:40 +0000 | [diff] [blame] | 103 | <scm> |
Ken Gilmer | a995383 | 2011-12-01 07:25:58 +0000 | [diff] [blame] | 104 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite</connection> |
| 105 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite</developerConnection> |
| 106 | <url>http://svn.apache.org/repos/asf/felix/trunk/httplite</url> |
Ken Gilmer | 37cbe51 | 2011-12-20 18:32:37 +0000 | [diff] [blame] | 107 | </scm> |
Ken Gilmer | d709bf1 | 2011-10-13 05:01:42 +0000 | [diff] [blame] | 108 | </project> |