blob: 54e6aaffde25b95a0779e99395a769ee2c876d42 [file] [log] [blame]
Clement Escoffier6fc482c2008-10-14 11:20:09 +00001<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">
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>1.0.2</version>
6 <relativePath>../../pom/pom.xml</relativePath>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>bundle</packaging>
10 <name>Apache Felix iPOJO Event Admin Handler</name>
11 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
Clement Escoffier2ac37e82008-10-14 11:20:29 +000012 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier6fc482c2008-10-14 11:20:09 +000013
14 <dependencies>
15 <dependency>
16 <groupId>org.apache.felix</groupId>
17 <artifactId>org.apache.felix.ipojo</artifactId>
18 <version>1.0.0</version>
19 </dependency>
20 <dependency>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
23 <version>1.0.0</version>
24 </dependency>
25 <dependency>
26 <groupId>org.apache.felix</groupId>
27 <artifactId>org.osgi.core</artifactId>
28 <version>1.0.0</version>
29 </dependency>
30 <dependency>
31 <groupId>org.apache.felix</groupId>
32 <artifactId>org.osgi.compendium</artifactId>
33 <version>1.0.0</version>
34 </dependency>
35 </dependencies>
36
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
42 <version>1.4.2</version>
43 <extensions>true</extensions>
44 <configuration>
45 <instructions>
46 <Export-Package>org.apache.felix.ipojo.handlers.event.*;
47 version="0.9.0"</Export-Package>
48 <Bundle-Name>${pom.name}</Bundle-Name>
49 <Bundle-SymbolicName>
50 org.apache.felix.ipojo.handler.eventadmin
51 </Bundle-SymbolicName>
52 <Bundle-Description>
53 iPOJO Event Admin Handlers
54 </Bundle-Description>
55 <Bundle-DocURL>
56 http://felix.apache.org/site/event-admin-handlers.html
57 </Bundle-DocURL>
58 <Bundle-Vendor>The Apache Software
59 Foundation</Bundle-Vendor>
60 <Include-Resource>
61 META-INF/LICENCE=LICENSE,
62 META-INF/NOTICE=NOTICE
63 </Include-Resource>
64 </instructions>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
70 <version>1.0.0</version>
71 <executions>
72 <execution>
73 <goals>
74 <goal>ipojo-bundle</goal>
75 </goals>
76 <configuration>
77 <metadata>metadata.xml</metadata>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
82 </plugins>
83 </build>
Clement Escoffier6fc482c2008-10-14 11:20:09 +000084</project>