blob: b2ee85e66981425c2b23e9abc9b0d00d248fba58 [file] [log] [blame]
Carsten Ziegelerbf338dd2008-01-03 09:11:33 +00001<!--
2Licensed to the Apache Software Foundation (ASF) under one
3or more contributor license agreements. See the NOTICE file
4distributed with this work for additional information
5regarding copyright ownership. The ASF licenses this file
6to you under the Apache License, Version 2.0 (the
7"License"); you may not use this file except in compliance
8with the License. You may obtain a copy of the License at
9
10http://www.apache.org/licenses/LICENSE-2.0
11
12Unless required by applicable law or agreed to in writing,
13software distributed under the License is distributed on an
14"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15KIND, either express or implied. See the License for the
16specific language governing permissions and limitations
17under the License.
18-->
Karl Pauls91761932006-04-28 11:12:54 +000019<project>
20 <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 Pauls91761932006-04-28 11:12:54 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
Karl Paulsb0a17162006-11-03 09:25:08 +000027 <packaging>bundle</packaging>
Karl Pauls91761932006-04-28 11:12:54 +000028 <name>Apache Felix EventAdmin</name>
Karl Paulsb0a17162006-11-03 09:25:08 +000029 <description>
30 This bundle provides an implementation of the OSGi R4 EventAdmin service.
31 </description>
Karl Pauls0a3858c2007-07-13 22:03:31 +000032 <version>0.9.0-SNAPSHOT</version>
Karl Pauls91761932006-04-28 11:12:54 +000033 <artifactId>org.apache.felix.eventadmin</artifactId>
34 <dependencies>
35 <dependency>
36 <groupId>${pom.groupId}</groupId>
37 <artifactId>org.osgi.core</artifactId>
Carsten Ziegelerc9e4bfd2007-08-20 11:19:34 +000038 <version>1.0.0</version>
Karl Pauls91761932006-04-28 11:12:54 +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 Pauls91761932006-04-28 11:12:54 +000044 </dependency>
45 </dependencies>
46 <build>
47 <plugins>
48 <plugin>
Karl Paulsb0a17162006-11-03 09:25:08 +000049 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000050 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch871e7db2007-12-20 17:03:43 +000051 <version>1.1.0-SNAPSHOT</version>
Karl Pauls91761932006-04-28 11:12:54 +000052 <extensions>true</extensions>
53 <configuration>
Karl Paulsb0a17162006-11-03 09:25:08 +000054 <instructions>
55 <Bundle-SymbolicName>
56 ${pom.artifactId}
57 </Bundle-SymbolicName>
58 <Bundle-Activator>
59 ${pom.artifactId}.impl.Activator
60 </Bundle-Activator>
Karl Paulsf876e362007-01-23 14:31:08 +000061 <DynamicImport-Package>
Karl Pauls91761932006-04-28 11:12:54 +000062 org.osgi.service.log
Karl Paulsf876e362007-01-23 14:31:08 +000063 </DynamicImport-Package>
Karl Paulsb0a17162006-11-03 09:25:08 +000064 <Import-Package>!org.osgi.service.log,*</Import-Package>
65 <Export-Package>org.osgi.service.event</Export-Package>
66 <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
Karl Paulsb0a17162006-11-03 09:25:08 +000067 <Import-Service>
Karl Pauls91761932006-04-28 11:12:54 +000068 org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
Karl Paulsb0a17162006-11-03 09:25:08 +000069 </Import-Service>
70 <Export-Service>
Karl Pauls91761932006-04-28 11:12:54 +000071 org.osgi.service.event.EventAdmin
Karl Paulsb0a17162006-11-03 09:25:08 +000072 </Export-Service>
73 </instructions>
Karl Pauls91761932006-04-28 11:12:54 +000074 </configuration>
75 </plugin>
76 </plugins>
77 </build>
Karl Pauls13dcf8c2006-08-22 21:39:30 +000078</project>