blob: 1f4e8aa18e6dd1a5fedb84e555fb15e3a58331b6 [file] [log] [blame]
Ken Gilmer102a99b2011-12-20 18:32:37 +00001<!-- 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"
Ken Gilmera9e308a2011-12-21 15:09:16 +000012 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
Ken Gilmer76e41a62011-10-13 05:59:54 +000013 <parent>
Ken Gilmer102a99b2011-12-20 18:32:37 +000014 <groupId>org.apache.felix</groupId>
15 <artifactId>felix-parent</artifactId>
16 <version>2.1</version>
17 <relativePath>../pom/pom.xml</relativePath>
18 </parent>
Ken Gilmer76e41a62011-10-13 05:59:54 +000019 <modelVersion>4.0.0</modelVersion>
20 <packaging>bundle</packaging>
Ken Gilmer924b8822011-10-25 06:17:27 +000021 <name>Apache Felix Lightweight HTTP Server</name>
Ken Gilmer76e41a62011-10-13 05:59:54 +000022 <description>A minimal HTTP Service implementation.</description>
Ken Gilmerd24a0902011-12-01 07:25:58 +000023 <version>0.1.3-SNAPSHOT</version>
Ken Gilmer76e41a62011-10-13 05:59:54 +000024 <artifactId>org.apache.felix.httplite</artifactId>
25 <dependencies>
26 <dependency>
27 <groupId>org.osgi</groupId>
28 <artifactId>org.osgi.core</artifactId>
Ken Gilmer5a989602011-12-15 15:55:45 +000029 <version>4.2.0</version>
Ken Gilmer76e41a62011-10-13 05:59:54 +000030 </dependency>
31 <dependency>
32 <groupId>org.osgi</groupId>
33 <artifactId>org.osgi.compendium</artifactId>
Ken Gilmer5a989602011-12-15 15:55:45 +000034 <version>4.2.0</version>
Ken Gilmer76e41a62011-10-13 05:59:54 +000035 </dependency>
36 <dependency>
37 <groupId>javax.servlet</groupId>
38 <artifactId>servlet-api</artifactId>
39 <version>2.4</version>
Ken Gilmer102a99b2011-12-20 18:32:37 +000040 </dependency>
Ken Gilmer5a989602011-12-15 15:55:45 +000041 <dependency>
42 <groupId>junit</groupId>
43 <artifactId>junit</artifactId>
44 <version>3.8.1</version>
45 <scope>test</scope>
Ken Gilmer102a99b2011-12-20 18:32:37 +000046 </dependency>
Ken Gilmer5a989602011-12-15 15:55:45 +000047 <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 Gilmer76e41a62011-10-13 05:59:54 +000059 </dependency>
60 </dependencies>
61 <build>
Ken Gilmera9e308a2011-12-21 15:09:16 +000062 <resources>
63 <resource>
64 <directory>${project.basedir}</directory>
65 <targetPath>META-INF/</targetPath>
66 <includes>
67 <include>LICENSE</include>
68 <include>NOTICE</include>
69 <include>DEPENDENCIES</include>
70 </includes>
71 </resource>
72 </resources>
Ken Gilmer76e41a62011-10-13 05:59:54 +000073 <plugins>
74 <plugin>
Ken Gilmer102a99b2011-12-20 18:32:37 +000075 <groupId>org.apache.maven.plugins</groupId>
76 <artifactId>maven-compiler-plugin</artifactId>
77 <version>2.3.2</version>
78 <configuration>
79 <source>1.3</source>
80 <target>1.3</target>
81 </configuration>
82 </plugin>
83 <plugin>
Ken Gilmer76e41a62011-10-13 05:59:54 +000084 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-bundle-plugin</artifactId>
86 <version>2.3.4</version>
87 <extensions>true</extensions>
88 <configuration>
89 <instructions>
Ken Gilmera9e308a2011-12-21 15:09:16 +000090 <Export-Package/>
Ken Gilmer102a99b2011-12-20 18:32:37 +000091 <Private-Package>org.apache.felix.httplite.osgi,
92 org.apache.felix.httplite.server,
Ken Gilmera9e308a2011-12-21 15:09:16 +000093 org.apache.felix.httplite.servlet
94 </Private-Package>
Ken Gilmer89a7c3e2011-11-21 04:20:36 +000095 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmera9e308a2011-12-21 15:09:16 +000096 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
97 <Bundle-Activator>${project.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer76e41a62011-10-13 05:59:54 +000098 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmer89a7c3e2011-11-21 04:20:36 +000099 <Import-Package>
100 javax.servlet;version="2.4",
101 javax.servlet.http;version="2.4",
102 org.osgi.service.http;version="1.2",
103 *
104 </Import-Package>
105 <Import-Service>
Ken Gilmer102a99b2011-12-20 18:32:37 +0000106 org.osgi.service.log.LogService;availability:=optional;multiple:=false
107 </Import-Service>
108 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
Ken Gilmer76e41a62011-10-13 05:59:54 +0000109 </instructions>
110 </configuration>
111 </plugin>
112 </plugins>
113 </build>
Ken Gilmer904b6892011-12-01 06:43:40 +0000114 <scm>
Ken Gilmerd24a0902011-12-01 07:25:58 +0000115 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite</connection>
116 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite</developerConnection>
117 <url>http://svn.apache.org/repos/asf/felix/trunk/httplite</url>
Ken Gilmer102a99b2011-12-20 18:32:37 +0000118 </scm>
Ken Gilmer2c29a972011-10-13 05:01:42 +0000119</project>