blob: 51e8ed0d38340770fb3bb910c2f03db940b4a40f [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>
Ken Gilmer5af5ee52012-01-11 00:08:14 +000024 <relativePath>../../pom/pom.xml</relativePath>
Ken Gilmer37cbe512011-12-20 18:32:37 +000025 </parent>
Ken Gilmer83092c12011-10-13 05:59:54 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
Ken Gilmerfc10f882012-01-20 01:53:28 +000028 <name>Apache Felix Lightweight HTTP Service Core</name>
Ken Gilmer83092c12011-10-13 05:59:54 +000029 <description>A minimal HTTP Service implementation.</description>
Ken Gilmerc56452f2012-01-20 05:42:41 +000030 <version>0.1.4</version>
Ken Gilmercf74b812012-01-20 01:50:28 +000031 <artifactId>org.apache.felix.httplite.core</artifactId>
Ken Gilmer83092c12011-10-13 05:59:54 +000032 <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>
Ken Gilmereb42ab42012-01-20 05:36:31 +000072 <targetPath>META-INF</targetPath>
Ken Gilmeree3355b2011-12-21 15:09:16 +000073 <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 Gilmer34108412012-01-20 02:04:34 +000091 <groupId>org.codehaus.mojo</groupId>
92 <artifactId>animal-sniffer-maven-plugin</artifactId>
93 <version>1.7</version>
94 <configuration>
95 <signature>
96 <groupId>org.codehaus.mojo.signature</groupId>
97 <artifactId>java13-sun</artifactId>
98 <version>1.0</version>
99 </signature>
100 </configuration>
101 <executions>
102 <execution>
103 <phase>test</phase>
104 <goals>
105 <goal>check</goal>
106 </goals>
107 </execution>
108 </executions>
109 </plugin>
110 <plugin>
Ken Gilmer83092c12011-10-13 05:59:54 +0000111 <groupId>org.apache.felix</groupId>
112 <artifactId>maven-bundle-plugin</artifactId>
113 <version>2.3.4</version>
114 <extensions>true</extensions>
115 <configuration>
116 <instructions>
Ken Gilmer25f012b2012-01-08 06:02:29 +0000117 <Export-Package />
Ken Gilmer37cbe512011-12-20 18:32:37 +0000118 <Private-Package>org.apache.felix.httplite.osgi,
119 org.apache.felix.httplite.server,
Ken Gilmeree3355b2011-12-21 15:09:16 +0000120 org.apache.felix.httplite.servlet
121 </Private-Package>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000122 <Export-Service>org.osgi.service.http.HttpService</Export-Service>
Ken Gilmeree3355b2011-12-21 15:09:16 +0000123 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
124 <Bundle-Activator>${project.artifactId}.osgi.Activator</Bundle-Activator>
Ken Gilmer83092c12011-10-13 05:59:54 +0000125 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Ken Gilmerccc45b52011-11-21 04:20:36 +0000126 <Import-Package>
127 javax.servlet;version="2.4",
128 javax.servlet.http;version="2.4",
129 org.osgi.service.http;version="1.2",
130 *
131 </Import-Package>
132 <Import-Service>
Ken Gilmer37cbe512011-12-20 18:32:37 +0000133 org.osgi.service.log.LogService;availability:=optional;multiple:=false
134 </Import-Service>
135 <Bundle-DocURL>http://felix.apache.org/site/apache-felix-light-http-service.html</Bundle-DocURL>
Ken Gilmer83092c12011-10-13 05:59:54 +0000136 </instructions>
137 </configuration>
138 </plugin>
139 </plugins>
140 </build>
Ken Gilmer616eac32011-12-01 06:43:40 +0000141 <scm>
Ken Gilmerc56452f2012-01-20 05:42:41 +0000142 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite.core-0.1.4</connection>
143 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite.core-0.1.4</developerConnection>
144 <url>http://svn.apache.org/repos/asf/felix/releases/org.apache.felix.httplite.core-0.1.4</url>
Ken Gilmer37cbe512011-12-20 18:32:37 +0000145 </scm>
Ken Gilmere288d712012-01-08 05:47:06 +0000146 <url>http://felix.apache.org/site/apache-felix-lightweight-http-service.html</url>
Ken Gilmerd709bf12011-10-13 05:01:42 +0000147</project>