blob: 985a01615b4d2315a3c98ff13a39acb29bf11024 [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 Gilmer37cbe512011-12-20 18:32:37 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Ken Gilmeree3355b2011-12-21 15:09:16 +000020 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 +000021 <parent>
Ken Gilmer37cbe512011-12-20 18:32:37 +000022 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
24 <version>2.1</version>
25 <relativePath>../pom/pom.xml</relativePath>
26 </parent>
Ken Gilmer83092c12011-10-13 05:59:54 +000027 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
Ken Gilmere288d712012-01-08 05:47:06 +000029 <name>Apache Felix Lightweight HTTP Service</name>
Ken Gilmer83092c12011-10-13 05:59:54 +000030 <description>A minimal HTTP Service implementation.</description>
Ken Gilmera9953832011-12-01 07:25:58 +000031 <version>0.1.3-SNAPSHOT</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000032 <artifactId>org.apache.felix.httplite</artifactId>
33 <dependencies>
34 <dependency>
35 <groupId>org.osgi</groupId>
36 <artifactId>org.osgi.core</artifactId>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000037 <version>4.2.0</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000038 </dependency>
39 <dependency>
40 <groupId>org.osgi</groupId>
41 <artifactId>org.osgi.compendium</artifactId>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000042 <version>4.2.0</version>
Ken Gilmer83092c12011-10-13 05:59:54 +000043 </dependency>
44 <dependency>
45 <groupId>javax.servlet</groupId>
46 <artifactId>servlet-api</artifactId>
47 <version>2.4</version>
Ken Gilmer37cbe512011-12-20 18:32:37 +000048 </dependency>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000049 <dependency>
50 <groupId>junit</groupId>
51 <artifactId>junit</artifactId>
52 <version>3.8.1</version>
53 <scope>test</scope>
Ken Gilmer37cbe512011-12-20 18:32:37 +000054 </dependency>
Ken Gilmer3ea5ed12011-12-15 15:55:45 +000055 <dependency>
56 <groupId>com.googlecode.pojosr</groupId>
57 <artifactId>de.kalpatec.pojosr.framework</artifactId>
58 <version>0.1.6</version>
59 <type>bundle</type>
60 <scope>test</scope>
61 </dependency>
62 <dependency>
63 <groupId>commons-io</groupId>
64 <artifactId>commons-io</artifactId>
65 <version>2.1</version>
66 <scope>test</scope>
Ken Gilmer83092c12011-10-13 05:59:54 +000067 </dependency>
68 </dependencies>
69 <build>
Ken Gilmeree3355b2011-12-21 15:09:16 +000070 <resources>
71 <resource>
72 <directory>${project.basedir}</directory>
73 <targetPath>META-INF/</targetPath>
74 <includes>
75 <include>LICENSE</include>
76 <include>NOTICE</include>
77 <include>DEPENDENCIES</include>
78 </includes>
79 </resource>
80 </resources>
Ken Gilmer52455e82011-12-28 08:16:38 +000081 <plugins>
Ken Gilmer83092c12011-10-13 05:59:54 +000082 <plugin>
Ken Gilmer37cbe512011-12-20 18:32:37 +000083 <groupId>org.apache.maven.plugins</groupId>
84 <artifactId>maven-compiler-plugin</artifactId>
85 <version>2.3.2</version>
86 <configuration>
87 <source>1.3</source>
88 <target>1.3</target>
89 </configuration>
90 </plugin>
91 <plugin>
Ken Gilmer83092c12011-10-13 05:59:54 +000092 <groupId>org.apache.felix</groupId>
93 <artifactId>maven-bundle-plugin</artifactId>
94 <version>2.3.4</version>
95 <extensions>true</extensions>
96 <configuration>
97 <instructions>
Ken Gilmer25f012b2012-01-08 06:02:29 +000098 <Export-Package />
Ken Gilmer37cbe512011-12-20 18:32:37 +000099 <Private-Package>org.apache.felix.httplite.osgi,
100 org.apache.felix.httplite.server,
Ken Gilmeree3355b2011-12-21 15:09:16 +0000101 org.apache.felix.httplite.servlet
102 </Private-Package>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000103 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmeree3355b2011-12-21 15:09:16 +0000104 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
105 <Bundle-Activator>${project.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer83092c12011-10-13 05:59:54 +0000106 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000107 <Import-Package>
108 javax.servlet;version="2.4",
109 javax.servlet.http;version="2.4",
110 org.osgi.service.http;version="1.2",
111 *
112 </Import-Package>
113 <Import-Service>
Ken Gilmer37cbe512011-12-20 18:32:37 +0000114 org.osgi.service.log.LogService;availability:=optional;multiple:=false
115 </Import-Service>
116 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
Ken Gilmer83092c12011-10-13 05:59:54 +0000117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
Ken Gilmer616eac32011-12-01 06:43:40 +0000122 <scm>
Ken Gilmera9953832011-12-01 07:25:58 +0000123 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/httplite</connection>
124 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/httplite</developerConnection>
125 <url>http://svn.apache.org/repos/asf/felix/trunk/httplite</url>
Ken Gilmer37cbe512011-12-20 18:32:37 +0000126 </scm>
Ken Gilmere288d712012-01-08 05:47:06 +0000127 <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url>
Ken Gilmerd709bf12011-10-13 05:01:42 +0000128</project>