blob: b58dbe7057b36981162b0fdb5b82377a1bc8f487 [file] [log] [blame]
Sten Roger Sandvikc73f7412009-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 Sandvikdad7a6d2009-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 Sandvikc73f7412009-09-14 09:59:12 +000020
21 <modelVersion>4.0.0</modelVersion>
22 <parent>
23 <groupId>org.apache.felix</groupId>
Felix Meschberger078b99f2011-12-05 15:22:27 +000024 <artifactId>org.apache.felix.http.parent</artifactId>
25 <version>1-SNAPSHOT</version>
26 <relativePath>../parent/pom.xml</relativePath>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000027 </parent>
28
29 <name>Apache Felix Http Whiteboard</name>
30 <artifactId>org.apache.felix.http.whiteboard</artifactId>
Felix Meschberger078b99f2011-12-05 15:22:27 +000031 <version>2.2.1-SNAPSHOT</version>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000032 <packaging>jar</packaging>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000033
34 <build>
35 <plugins>
36 <plugin>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschbergerc8b28c12011-12-05 20:10:13 +000039 <extensions>true</extensions>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000040 <configuration>
41 <instructions>
42 <Bundle-Activator>
43 org.apache.felix.http.whiteboard.internal.WhiteboardActivator
44 </Bundle-Activator>
Felix Meschbergerc8b28c12011-12-05 20:10:13 +000045 <Embed-Dependency>
46 org.apache.felix.http.base;inline=org/apache/felix/http/base/internal/AbstractActivator*.class|
47 org/apache/felix/http/base/internal/logger/*
48 </Embed-Dependency>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000049 </instructions>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54
55 <dependencies>
56 <dependency>
57 <groupId>javax.servlet</groupId>
58 <artifactId>servlet-api</artifactId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000059 </dependency>
60 <dependency>
Richard S. Hall01012fc2009-10-01 08:55:33 +000061 <groupId>org.osgi</groupId>
62 <artifactId>org.osgi.core</artifactId>
Richard S. Hall01012fc2009-10-01 08:55:33 +000063 </dependency>
64 <dependency>
65 <groupId>org.osgi</groupId>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000066 <artifactId>org.osgi.compendium</artifactId>
Felix Meschbergerc8b28c12011-12-05 20:10:13 +000067 </dependency>
68 <dependency>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>org.apache.felix.http.api</artifactId>
71 <version>2.2.0</version>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000072 <scope>provided</scope>
73 </dependency>
74 <dependency>
Felix Meschbergerc8b28c12011-12-05 20:10:13 +000075 <groupId>org.apache.felix</groupId>
76 <artifactId>org.apache.felix.http.base</artifactId>
77 <version>2.2.0</version>
78 <scope>provided</scope>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000079 </dependency>
Sten Roger Sandvik6f739872009-09-24 17:20:25 +000080 <dependency>
Felix Meschbergerc8b28c12011-12-05 20:10:13 +000081 <groupId>biz.aQute</groupId>
82 <artifactId>bndlib</artifactId>
83 <version>1.50.0</version>
84 <scope>provided</scope>
85 </dependency>
86
87 <!-- Test Dependencies -->
88 <dependency>
89 <groupId>commons-collections</groupId>
90 <artifactId>commons-collections</artifactId>
91 <version>3.2.1</version>
92 <scope>test</scope>
Sten Roger Sandvik94fb1962009-09-28 20:23:26 +000093 </dependency>
Sten Roger Sandvikc73f7412009-09-14 09:59:12 +000094 </dependencies>
95
96</project>