Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 1 | <!-- |
| 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 | --> |
Sten Roger Sandvik | ee4dd85 | 2009-09-28 20:30:00 +0000 | [diff] [blame] | 19 | <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"> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 20 | |
| 21 | <modelVersion>4.0.0</modelVersion> |
| 22 | <parent> |
| 23 | <groupId>org.apache.felix</groupId> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 24 | <artifactId>org.apache.felix.http.parent</artifactId> |
Carsten Ziegeler | 423e1bc | 2015-06-12 07:22:19 +0000 | [diff] [blame] | 25 | <version>7-SNAPSHOT</version> |
Felix Meschberger | 4a4b032 | 2011-12-05 15:22:27 +0000 | [diff] [blame] | 26 | <relativePath>../parent/pom.xml</relativePath> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 27 | </parent> |
| 28 | |
| 29 | <name>Apache Felix Http Base</name> |
| 30 | <artifactId>org.apache.felix.http.base</artifactId> |
Carsten Ziegeler | cb145b5 | 2015-01-29 13:13:33 +0000 | [diff] [blame] | 31 | <version>3.0.0-SNAPSHOT</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 32 | <packaging>jar</packaging> |
| 33 | |
Jan Willem Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 34 | <scm> |
Carsten Ziegeler | 9b7af22 | 2015-01-29 12:27:49 +0000 | [diff] [blame] | 35 | <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/base</connection> |
| 36 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/base</developerConnection> |
| 37 | <url>http://svn.apache.org/viewvc/felix/trunk/http/base/</url> |
Jan Willem Janssen | 7d9f9fe | 2013-09-17 13:46:15 +0000 | [diff] [blame] | 38 | </scm> |
| 39 | |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 40 | <build> |
| 41 | <plugins> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>maven-bundle-plugin</artifactId> |
| 45 | <configuration> |
| 46 | <instructions> |
| 47 | <Private-Package> |
| 48 | org.apache.felix.http.base.* |
| 49 | </Private-Package> |
| 50 | <Import-Package> |
Jan Willem Janssen | 13d8854 | 2014-02-12 13:32:48 +0000 | [diff] [blame] | 51 | org.osgi.service.useradmin;resolution:=optional, |
| 52 | * |
Sten Roger Sandvik | b61405d | 2009-09-28 20:23:26 +0000 | [diff] [blame] | 53 | </Import-Package> |
| 54 | </instructions> |
| 55 | </configuration> |
| 56 | </plugin> |
| 57 | </plugins> |
| 58 | </build> |
| 59 | |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 60 | <dependencies> |
| 61 | <dependency> |
| 62 | <groupId>javax.servlet</groupId> |
Jan Willem Janssen | 0a3f86a | 2014-02-07 16:03:21 +0000 | [diff] [blame] | 63 | <artifactId>javax.servlet-api</artifactId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 64 | <scope>provided</scope> |
| 65 | </dependency> |
| 66 | <dependency> |
Richard S. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 67 | <groupId>org.osgi</groupId> |
| 68 | <artifactId>org.osgi.core</artifactId> |
Carsten Ziegeler | cb145b5 | 2015-01-29 13:13:33 +0000 | [diff] [blame] | 69 | <version>6.0.0</version> |
Richard S. Hall | 4b26230 | 2009-10-01 08:55:33 +0000 | [diff] [blame] | 70 | <scope>provided</scope> |
| 71 | </dependency> |
| 72 | <dependency> |
| 73 | <groupId>org.osgi</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 74 | <artifactId>org.osgi.compendium</artifactId> |
| 75 | <scope>provided</scope> |
| 76 | </dependency> |
| 77 | <dependency> |
Jan Willem Janssen | 926e71c | 2013-11-10 14:41:39 +0000 | [diff] [blame] | 78 | <groupId>${project.groupId}</groupId> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 79 | <artifactId>org.apache.felix.http.api</artifactId> |
Carsten Ziegeler | dac66e2 | 2015-01-29 12:38:25 +0000 | [diff] [blame] | 80 | <version>3.0.0-SNAPSHOT</version> |
Carsten Ziegeler | 77931e8 | 2015-01-31 15:21:09 +0000 | [diff] [blame] | 81 | <scope>provided</scope> |
| 82 | </dependency> |
| 83 | <dependency> |
| 84 | <groupId>com.google.code.findbugs</groupId> |
| 85 | <artifactId>jsr305</artifactId> |
| 86 | <version>3.0.0</version> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 87 | </dependency> |
Carsten Ziegeler | 5ed2305 | 2015-04-09 08:09:49 +0000 | [diff] [blame] | 88 | <dependency> |
| 89 | <groupId>org.hamcrest</groupId> |
| 90 | <artifactId>hamcrest-library</artifactId> |
| 91 | <version>1.3</version> |
| 92 | <scope>test</scope> |
| 93 | </dependency> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 94 | </dependencies> |
Sten Roger Sandvik | 5af73c2 | 2009-09-14 09:59:12 +0000 | [diff] [blame] | 95 | </project> |