blob: 7cf57118090ad2ea5b1db4e31ab9bba2190478d6 [file] [log] [blame]
Clement Escoffier9b47a302008-10-14 11:58:21 +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 White Board Pattern Handler</name>
11 <artifactId>
12 org.apache.felix.ipojo.handler.whiteboard
13 </artifactId>
14 <groupId>org.apache.felix</groupId>
15 <version>1.0.0</version>
16
17 <dependencies>
18 <dependency>
19 <groupId>org.apache.felix</groupId>
20 <artifactId>org.apache.felix.ipojo</artifactId>
21 <version>1.0.0</version>
22 </dependency>
23 <dependency>
24 <groupId>org.apache.felix</groupId>
25 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
26 <version>1.0.0</version>
27 </dependency>
28 <dependency>
29 <groupId>org.apache.felix</groupId>
30 <artifactId>org.osgi.core</artifactId>
31 <version>1.0.0</version>
32 </dependency>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.osgi.compendium</artifactId>
36 <version>1.0.0</version>
37 </dependency>
38 </dependencies>
39
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>maven-bundle-plugin</artifactId>
45 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-Name>${pom.name}</Bundle-Name>
49 <Bundle-SymbolicName>
50 org.apache.felix.ipojo.handler.whiteboard
51 </Bundle-SymbolicName>
52 <Bundle-Vendor>
53 The Apache Software Foundation
54 </Bundle-Vendor>
55 <Bundle-Description>
56 iPOJO White-Board Pattern Handler
57 </Bundle-Description>
58 <Bundle-DocURL>
59 http://felix.apache.org/site/white-board-pattern-handler.html
60 </Bundle-DocURL>
61 <Private-Package>
62 org.apache.felix.ipojo.handler.wbp
63 </Private-Package>
64 <Bundle-Name>${pom.name}</Bundle-Name>
65 <Bundle-SymbolicName>
66 ipojo.event.admin.handler.wbp
67 </Bundle-SymbolicName>
68 <Include-Resource>
69 META-INF/LICENCE=LICENSE,
70 META-INF/NOTICE=NOTICE
71 </Include-Resource>
72 </instructions>
73 </configuration>
74 </plugin>
75 <plugin>
76 <groupId>org.apache.felix</groupId>
77 <artifactId>maven-ipojo-plugin</artifactId>
78 <version>1.0.0</version>
79 <executions>
80 <execution>
81 <goals>
82 <goal>ipojo-bundle</goal>
83 </goals>
84 <configuration>
85 <metadata>metadata.xml</metadata>
86 </configuration>
87 </execution>
88 </executions>
89 </plugin>
90 </plugins>
91 </build>
92
93 <scm>
94 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.whiteboard-1.0.0</connection>
95 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.whiteboard-1.0.0</developerConnection>
96 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.whiteboard-1.0.0</url>
97 </scm>
98</project>