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