blob: c63c9bceb8727f82fbdead0f62093bca305c2ea0 [file] [log] [blame]
Karl Pauls91761932006-04-28 11:12:54 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix EventAdmin</name>
10 <artifactId>org.apache.felix.eventadmin</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>EventAdmin</bundleName>
35 <bundleVendor>Apache Software Foundation</bundleVendor>
36 <bundleDescription>
37 This bundle provides an implementation of the OSGi R4 EventAdmin service.
38 </bundleDescription>
Karl Pauls13dcf8c2006-08-22 21:39:30 +000039 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
Karl Pauls91761932006-04-28 11:12:54 +000040 <bundleActivator>
41 org.apache.felix.eventadmin.impl.Activator
42 </bundleActivator>
43 <importPackage>
44 org.osgi.framework, org.osgi.service.event; version=1.0.1
45 </importPackage>
46 <dynamicImportPackage>
47 org.osgi.service.log
48 </dynamicImportPackage>
49 <importService>
50 org.osgi.service.event.EventHandler, org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
51 </importService>
52 <exportService>
53 org.osgi.service.event.EventAdmin
54 </exportService>
55 </osgiManifest>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
Karl Pauls13dcf8c2006-08-22 21:39:30 +000060</project>