blob: e313c085c08054e25263d5219ce64ef19fb672ca [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>
Carsten Ziegelerd1d8ecd2016-01-06 10:28:55 +000025 <version>9-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
Carsten Ziegelera2cef672015-12-17 10:49:53 +000029 <name>Apache Felix Http Samples - Whiteboard</name>
Carsten Ziegelerc49b05e2015-12-17 10:47:04 +000030 <description>This example shows how to register servlets and filters using the Http Whiteboard Service.</description>
Carsten Ziegelera2cef672015-12-17 10:49:53 +000031 <artifactId>org.apache.felix.http.samples.whiteboard</artifactId>
32 <version>3.0.0-SNAPSHOT</version>
Carsten Ziegelerc49b05e2015-12-17 10:47:04 +000033 <packaging>bundle</packaging>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000034
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000035 <scm>
Carsten Ziegelera2cef672015-12-17 10:49:53 +000036 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/http/samples/whiteboard</connection>
37 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/trunk/http/samples/whiteboard</developerConnection>
38 <url>http://svn.apache.org/viewvc/felix/trunk/http/samples/whiteboard/</url>
Jan Willem Janssen7d9f9fe2013-09-17 13:46:15 +000039 </scm>
40
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000041 <build>
42 <plugins>
43 <plugin>
44 <groupId>org.apache.felix</groupId>
45 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegelerc49b05e2015-12-17 10:47:04 +000046 <version>3.0.1</version>
47 <extensions>true</extensions>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000048 <configuration>
49 <instructions>
50 <Bundle-Activator>
Carsten Ziegelera2cef672015-12-17 10:49:53 +000051 org.apache.felix.http.samples.whiteboard.Activator
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000052 </Bundle-Activator>
53 <Private-Package>
Carsten Ziegelera2cef672015-12-17 10:49:53 +000054 org.apache.felix.http.samples.whiteboard
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000055 </Private-Package>
Carsten Ziegelerc49b05e2015-12-17 10:47:04 +000056 <Export-Package>
Carsten Ziegelera2cef672015-12-17 10:49:53 +000057 !org.apache.felix.http.samples.whiteboard
Carsten Ziegelerc49b05e2015-12-17 10:47:04 +000058 </Export-Package>
59 <Require-Capability>
60 osgi.contract; filter:="(&amp;(osgi.contract=JavaServlet)(version>=3.1))"
61 </Require-Capability>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000062 </instructions>
63 </configuration>
64 </plugin>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000065 </plugins>
66 </build>
67
68 <dependencies>
69 <dependency>
70 <groupId>javax.servlet</groupId>
Jan Willem Janssen0a3f86a2014-02-07 16:03:21 +000071 <artifactId>javax.servlet-api</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000072 </dependency>
73 <dependency>
Richard S. Hall4b262302009-10-01 08:55:33 +000074 <groupId>org.osgi</groupId>
Carsten Ziegelerdaa09f02015-08-14 14:00:27 +000075 <artifactId>osgi.core</artifactId>
Richard S. Hall4b262302009-10-01 08:55:33 +000076 </dependency>
77 <dependency>
78 <groupId>org.osgi</groupId>
Carsten Ziegelerdaa09f02015-08-14 14:00:27 +000079 <artifactId>osgi.cmpn</artifactId>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000080 </dependency>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000081 </dependencies>
Sten Roger Sandvik5af73c22009-09-14 09:59:12 +000082</project>