blob: c5d3702e732d548dfc633b00c1f2c8f56f8f2e69 [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"
12 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>
62 <plugins>
63 <plugin>
Ken Gilmer102a99b2011-12-20 18:32:37 +000064 <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 Gilmer76e41a62011-10-13 05:59:54 +000073 <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 Gilmerfe753082011-11-21 04:28:29 +000079 <Export-Package />
Ken Gilmer102a99b2011-12-20 18:32:37 +000080 <Private-Package>org.apache.felix.httplite.osgi,
81 org.apache.felix.httplite.server,
82 org.apache.felix.httplite.servlet</Private-Package>
Ken Gilmer89a7c3e2011-11-21 04:20:36 +000083 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmer76e41a62011-10-13 05:59:54 +000084 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Ken Gilmer89a7c3e2011-11-21 04:20:36 +000085 <Bundle-Activator>${pom.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer76e41a62011-10-13 05:59:54 +000086 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmer3dc00782011-12-01 07:16:06 +000087 <Include-Resource>META-INF/LICENSE=LICENSE,META-INF/NOTICE=NOTICE,META-INF/DEPENDENCIES=DEPENDENCIES</Include-Resource>
Ken Gilmer89a7c3e2011-11-21 04:20:36 +000088 <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 Gilmer102a99b2011-12-20 18:32:37 +000095 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 Gilmer76e41a62011-10-13 05:59:54 +000098 </instructions>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
Ken Gilmer904b6892011-12-01 06:43:40 +0000103 <scm>
Ken Gilmerd24a0902011-12-01 07:25:58 +0000104 <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 Gilmer102a99b2011-12-20 18:32:37 +0000107 </scm>
Ken Gilmer2c29a972011-10-13 05:01:42 +0000108</project>