blob: d2492947ceaa8b394dcc3ae4f748a77b72fd0da5 [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">
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000020 <parent>
Karl Paulsb0a17162006-11-03 09:25:08 +000021 <groupId>org.apache.felix</groupId>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix EventAdmin</name>
29 <description>
30 This bundle provides an implementation of the OSGi R4 EventAdmin service.
31 </description>
Carsten Ziegeler6d15eb52010-02-18 07:42:50 +000032 <version>1.2.3-SNAPSHOT</version>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000033 <artifactId>org.apache.felix.eventadmin</artifactId>
34 <dependencies>
35 <dependency>
36 <groupId>org.osgi</groupId>
37 <artifactId>org.osgi.core</artifactId>
38 <version>4.0.0</version>
39 </dependency>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.compendium</artifactId>
43 <version>4.2.0</version>
44 </dependency>
45 <dependency>
46 <groupId>concurrent</groupId>
47 <artifactId>concurrent</artifactId>
48 <version>1.3.4</version>
49 </dependency>
50 </dependencies>
51 <build>
52 <plugins>
53 <plugin>
54 <groupId>org.apache.felix</groupId>
55 <artifactId>maven-bundle-plugin</artifactId>
56 <version>1.4.3</version>
57 <extensions>true</extensions>
58 <configuration>
59 <instructions>
60 <Bundle-SymbolicName>
61 ${pom.artifactId}
62 </Bundle-SymbolicName>
63 <Bundle-Activator>
64 ${pom.artifactId}.impl.Activator
65 </Bundle-Activator>
66 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
67 <DynamicImport-Package>
68 org.osgi.service.log
69 </DynamicImport-Package>
Carsten Ziegeler828f51f2010-02-03 08:27:45 +000070 <Import-Package>
71 !org.osgi.service.log,
72 <!--
73 Configuration Admin is optional and if it is
74 present, version 1.2 (from R4.0) is enough
75 -->
76 org.osgi.service.cm;version="[1.2,2)";resolution:=optional,
77
78 <!--
79 Metatype is optional and if it is
80 present, version 1.1 (from R4.1) is enough
81 -->
82 org.osgi.service.metatype;version="[1.1,2)";resolution:=optional,
83
84 <!-- default -->
85 *
86 </Import-Package>
Carsten Ziegeler07203992010-02-16 12:38:17 +000087 <Export-Package>org.osgi.service.event</Export-Package>
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000088 <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
89 <Import-Service>
90 org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
91 </Import-Service>
92 <Export-Service>
93 org.osgi.service.event.EventAdmin
94 </Export-Service>
95 <Embed-Dependency>
Carsten Ziegeler880d4e12010-02-05 15:56:47 +000096 concurrent;inline="EDU/oswego/cs/dl/util/concurrent/*"
Carsten Ziegelerbaad9d92010-02-03 07:04:11 +000097 </Embed-Dependency>
98 </instructions>
99 </configuration>
100 </plugin>
101 </plugins>
102 </build>
Karl Pauls13dcf8c2006-08-22 21:39:30 +0000103</project>