blob: 7e91cd602fa319bb989e3698ee66dcaa6111e073 [file] [log] [blame]
Carsten Ziegeler4fec0962008-01-11 16:13:31 +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
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00009
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000010 http://www.apache.org/licenses/LICENSE-2.0
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000011
Carsten Ziegeler4fec0962008-01-11 16:13:31 +000012 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.
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000018-->
Carsten Ziegeler4fec0962008-01-11 16:13:31 +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">
Karl Pauls12fab7e2006-05-06 11:59:40 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +000023 <version>1.0.1</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000024 <relativePath>../../pom/pom.xml</relativePath>
Karl Pauls12fab7e2006-05-06 11:59:40 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Karl Pauls3135a692006-11-03 13:08:59 +000027 <packaging>bundle</packaging>
Karl Pauls12fab7e2006-05-06 11:59:40 +000028 <name>Apache Felix EventAdmin Bridge UPnP</name>
Karl Pauls0a3858c2007-07-13 22:03:31 +000029 <version>0.9.0-SNAPSHOT</version>
Karl Pauls12fab7e2006-05-06 11:59:40 +000030 <artifactId>org.apache.felix.eventadmin.bridge.upnp</artifactId>
Karl Pauls3135a692006-11-03 13:08:59 +000031 <description>
32 This bundle provides a bridge between UPnP and EventAdmin events.
33 </description>
Karl Pauls12fab7e2006-05-06 11:59:40 +000034 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000038 <version>1.1.0-SNAPSHOT</version>
Karl Pauls12fab7e2006-05-06 11:59:40 +000039 </dependency>
40 <dependency>
41 <groupId>${pom.groupId}</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000043 <version>0.9.0-SNAPSHOT</version>
Karl Pauls12fab7e2006-05-06 11:59:40 +000044 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
Karl Pauls3135a692006-11-03 13:08:59 +000049 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000050 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000051 <version>1.1.0-SNAPSHOT</version>
Karl Pauls12fab7e2006-05-06 11:59:40 +000052 <extensions>true</extensions>
53 <configuration>
Karl Pauls3135a692006-11-03 13:08:59 +000054 <instructions>
55 <Bundle-Activator>${pom.artifactId}.Activator</Bundle-Activator>
56 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
57 <Import-Service>
Karl Pauls8e912cf2006-06-21 20:29:23 +000058 org.osgi.service.event.EventAdmin,
59 org.osgi.service.event.EventHandler
Karl Pauls3135a692006-11-03 13:08:59 +000060 </Import-Service>
61 <Export-Service>
Karl Pauls12fab7e2006-05-06 11:59:40 +000062 org.osgi.service.upnp.UPnPEventListener
Karl Pauls3135a692006-11-03 13:08:59 +000063 </Export-Service>
64 <Private-Package>${pom.artifactId}.*</Private-Package>
Karl Pauls3135a692006-11-03 13:08:59 +000065 </instructions>
Karl Pauls12fab7e2006-05-06 11:59:40 +000066 </configuration>
67 </plugin>
68 </plugins>
69 </build>
70</project>