blob: 304b888d130d86513aabc1cb85f1ef70d754bf51 [file] [log] [blame]
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +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-->
Sten Roger Sandvikee4dd852009-09-28 20:30:00 +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">
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000025 <version>5-SNAPSHOT</version>
Felix Meschberger4a4b0322011-12-05 15:22:27 +000026 <relativePath>../parent/pom.xml</relativePath>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000027 </parent>
28
29 <name>Apache Felix Http Whiteboard</name>
30 <artifactId>org.apache.felix.http.whiteboard</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000031 <version>2.4.0-SNAPSHOT</version>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +000032 <packaging>jar</packaging>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000033
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000034 <scm>
Jan Willem Janssen43fa9c72014-11-05 09:44:40 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/whiteboard</connection>
36 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/whiteboard</developerConnection>
37 <url>http://svn.apache.org/viewvc/felix/trunk/http/whiteboard/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000038 </scm>
39
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000040 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000045 <extensions>true</extensions>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000046 <configuration>
47 <instructions>
48 <Bundle-Activator>
49 org.apache.felix.http.whiteboard.internal.WhiteboardActivator
50 </Bundle-Activator>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000051 <Embed-Dependency>
52 org.apache.felix.http.base;inline=org/apache/felix/http/base/internal/AbstractActivator*.class|
53 org/apache/felix/http/base/internal/logger/*
54 </Embed-Dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000055 </instructions>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
60
61 <dependencies>
62 <dependency>
63 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000064 <artifactId>javax.servlet-api</artifactId>
65 <scope>provided</scope>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000066 </dependency>
67 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000068 <groupId>org.osgi</groupId>
69 <artifactId>org.osgi.core</artifactId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000070 <scope>provided</scope>
Richard S. Hall4b262302009-10-01 08:55:33 +000071 </dependency>
72 <dependency>
73 <groupId>org.osgi</groupId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000074 <artifactId>org.osgi.compendium</artifactId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000075 <scope>provided</scope>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000076 </dependency>
77 <dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000078 <groupId>${project.groupId}</groupId>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000079 <artifactId>org.apache.felix.http.api</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000080 <version>[2.0,3)</version>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000081 <scope>provided</scope>
82 </dependency>
83 <dependency>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000084 <groupId>${project.groupId}</groupId>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000085 <artifactId>org.apache.felix.http.base</artifactId>
Jan Willem Janssen54ed79f2015-01-15 10:09:19 +000086 <version>[2.4.0-SNAPSHOT,2.5)</version>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000087 <scope>provided</scope>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000088 </dependency>
Sten Roger Sandvik4dbf1d62009-09-24 17:20:25 +000089 <dependency>
Felix Meschberger0a81b8a2011-12-05 20:10:13 +000090 <groupId>biz.aQute</groupId>
91 <artifactId>bndlib</artifactId>
92 <version>1.50.0</version>
93 <scope>provided</scope>
94 </dependency>
95
96 <!-- Test Dependencies -->
97 <dependency>
98 <groupId>commons-collections</groupId>
99 <artifactId>commons-collections</artifactId>
100 <version>3.2.1</version>
101 <scope>test</scope>
Sten Roger Sandvikb61405d2009-09-28 20:23:26 +0000102 </dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +0000103 </dependencies>
104
105</project>