blob: ee8922c8a86cee471ec3ec939c34be6368a8f2b8 [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 Ziegeler827e55d2010-02-03 07:04:11 +000020 <parent>
Karl Paulsb0a17162006-11-03 09:25:08 +000021 <groupId>org.apache.felix</groupId>
Carsten Ziegeler827e55d2010-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>
Sanjeeb Kumar Sahoodf193212010-11-30 19:46:04 +000032 <version>1.2.9-SNAPSHOT</version>
Carsten Ziegeler827e55d2010-02-03 07:04:11 +000033 <artifactId>org.apache.felix.eventadmin</artifactId>
Carsten Ziegeler261ccfd2010-08-27 07:38:17 +000034 <scm>
Sanjeeb Kumar Sahoodf193212010-11-30 19:46:04 +000035 <connection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/eventadmin/impl</connection>
36 <developerConnection>scm:svn:http://svn.apache.org/repos/asf/felix/trunk/eventadmin/impl</developerConnection>
37 <url>http://svn.apache.org/repos/asf/felix/eventadmin/impl</url>
Carsten Ziegeler261ccfd2010-08-27 07:38:17 +000038 </scm>
Carsten Ziegeler827e55d2010-02-03 07:04:11 +000039 <dependencies>
40 <dependency>
41 <groupId>org.osgi</groupId>
42 <artifactId>org.osgi.core</artifactId>
43 <version>4.0.0</version>
44 </dependency>
45 <dependency>
46 <groupId>org.osgi</groupId>
47 <artifactId>org.osgi.compendium</artifactId>
48 <version>4.2.0</version>
49 </dependency>
50 <dependency>
51 <groupId>concurrent</groupId>
52 <artifactId>concurrent</artifactId>
53 <version>1.3.4</version>
54 </dependency>
55 </dependencies>
56 <build>
Carsten Ziegeler777ab952010-08-25 17:16:18 +000057 <resources>
58 <resource>
59 <directory>${basedir}/src/main/resources</directory>
60 </resource>
61 <resource>
62 <targetPath>META-INF</targetPath>
63 <directory>${basedir}</directory>
64 <includes>
65 <include>LICENSE*</include>
66 <include>NOTICE</include>
67 <include>DEPENDENCIES</include>
68 </includes>
69 </resource>
70 </resources>
Carsten Ziegeler827e55d2010-02-03 07:04:11 +000071 <plugins>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-bundle-plugin</artifactId>
75 <version>1.4.3</version>
76 <extensions>true</extensions>
77 <configuration>
78 <instructions>
79 <Bundle-SymbolicName>
80 ${pom.artifactId}
81 </Bundle-SymbolicName>
82 <Bundle-Activator>
83 ${pom.artifactId}.impl.Activator
84 </Bundle-Activator>
85 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
86 <DynamicImport-Package>
87 org.osgi.service.log
88 </DynamicImport-Package>
Carsten Ziegelerebe46232010-02-03 08:27:45 +000089 <Import-Package>
90 !org.osgi.service.log,
91 <!--
92 Configuration Admin is optional and if it is
93 present, version 1.2 (from R4.0) is enough
94 -->
95 org.osgi.service.cm;version="[1.2,2)";resolution:=optional,
96
97 <!--
98 Metatype is optional and if it is
99 present, version 1.1 (from R4.1) is enough
100 -->
101 org.osgi.service.metatype;version="[1.1,2)";resolution:=optional,
102
103 <!-- default -->
104 *
105 </Import-Package>
Carsten Ziegeler40012fe2010-02-16 12:38:17 +0000106 <Export-Package>org.osgi.service.event</Export-Package>
Carsten Ziegeler827e55d2010-02-03 07:04:11 +0000107 <Private-Package>org.apache.felix.eventadmin.impl.*</Private-Package>
108 <Import-Service>
109 org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
110 </Import-Service>
111 <Export-Service>
112 org.osgi.service.event.EventAdmin
113 </Export-Service>
114 <Embed-Dependency>
Carsten Ziegeler325a62f2010-02-05 15:56:47 +0000115 concurrent;inline="EDU/oswego/cs/dl/util/concurrent/*"
Carsten Ziegeler827e55d2010-02-03 07:04:11 +0000116 </Embed-Dependency>
117 </instructions>
118 </configuration>
119 </plugin>
120 </plugins>
121 </build>
Karl Pauls13dcf8c2006-08-22 21:39:30 +0000122</project>