blob: e3ec6a436c8eb9f42d54dec7c1764836c62ceb83 [file] [log] [blame]
Ken Gilmerb7a37f62011-12-21 15:11:02 +00001<!--
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 Gilmer1e53f6e2012-01-08 06:06:59 +000019<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 Gilmer83092c12011-10-13 05:59:54 +000020 <parent>
Ken Gilmer37cbe512011-12-20 18:32:37 +000021 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
23 <version>2.1</version>
24 <relativePath>../pom/pom.xml</relativePath>
25 </parent>
Ken Gilmer83092c12011-10-13 05:59:54 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Ken Gilmere288d712012-01-08 05:47:06 +000028 <name>Apache Felix Lightweight HTTP Service</name>
Ken Gilmer83092c12011-10-13 05:59:54 +000029 <description>A minimal HTTP Service implementation.</description>
Ken Gilmer1e53f6e2012-01-08 06:06:59 +000030 <version>0.1.4</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000031 <artifactId>org.apache.felix.httplite</artifactId>
32 <dependencies>
33 <dependency>
34 <groupId>org.osgi</groupId>
35 <artifactId>org.osgi.core</artifactId>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000036 <version>4.2.0</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000037 </dependency>
38 <dependency>
39 <groupId>org.osgi</groupId>
40 <artifactId>org.osgi.compendium</artifactId>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000041 <version>4.2.0</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000042 </dependency>
43 <dependency>
44 <groupId>javax.servlet</groupId>
45 <artifactId>servlet-api</artifactId>
46 <version>2.4</version>
Ken Gilmer37cbe512011-12-20 18:32:37 +000047 </dependency>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000048 <dependency>
49 <groupId>junit</groupId>
50 <artifactId>junit</artifactId>
51 <version>3.8.1</version>
52 <scope>test</scope>
Ken Gilmer37cbe512011-12-20 18:32:37 +000053 </dependency>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000054 <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 Gilmer83092c12011-10-13 05:59:54 +000066 </dependency>
67 </dependencies>
68 <build>
Ken Gilmeree3355b2011-12-21 15:09:16 +000069 <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 Gilmer52455e82011-12-28 08:16:38 +000080 <plugins>
Ken Gilmer83092c12011-10-13 05:59:54 +000081 <plugin>
Ken Gilmer37cbe512011-12-20 18:32:37 +000082 <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 Gilmer83092c12011-10-13 05:59:54 +000091 <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 Gilmer25f012b2012-01-08 06:02:29 +000097 <Export-Package />
Ken Gilmer37cbe512011-12-20 18:32:37 +000098 <Private-Package>org.apache.felix.httplite.osgi,
99 org.apache.felix.httplite.server,
Ken Gilmeree3355b2011-12-21 15:09:16 +0000100 org.apache.felix.httplite.servlet
101 </Private-Package>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000102 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmeree3355b2011-12-21 15:09:16 +0000103 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
104 <Bundle-Activator>${project.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer83092c12011-10-13 05:59:54 +0000105 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000106 <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 Gilmer37cbe512011-12-20 18:32:37 +0000113 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 Gilmer83092c12011-10-13 05:59:54 +0000116 </instructions>
117 </configuration>
118 </plugin>
119 </plugins>
120 </build>
Ken Gilmer616eac32011-12-01 06:43:40 +0000121 <scm>
Ken Gilmer1e53f6e2012-01-08 06:06:59 +0000122 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.4</connection>
123 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.4</developerConnection>
124 <url>http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite-0.1.4</url>
Ken Gilmer37cbe512011-12-20 18:32:37 +0000125 </scm>
Ken Gilmere288d712012-01-08 05:47:06 +0000126 <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url>
Ken Gilmerd709bf12011-10-13 05:01:42 +0000127</project>