blob: 5e85239bff548ee7b81f9cca7adc8e1e5c544d05 [file] [log] [blame]
Clement Escoffiere50ede52008-03-28 15:33:36 +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
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 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.
18-->
Clement Escoffierd4395d52008-05-18 23:11:32 +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">
Clement Escoffier6b928e92008-05-16 20:33:54 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000026 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO White Board Pattern Handler</name>
29 <artifactId>
Clement Escoffier29b170a2008-07-24 08:23:17 +000030 org.apache.felix.ipojo.handler.whiteboard
Clement Escoffiere50ede52008-03-28 15:33:36 +000031 </artifactId>
Clement Escoffiera4142112008-03-29 15:04:02 +000032 <groupId>org.apache.felix</groupId>
Clement Escoffier72c25332008-05-18 23:11:41 +000033 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000034
35 <dependencies>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierf459e642008-05-19 01:47:07 +000039 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000040 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffierf459e642008-05-19 01:47:07 +000044 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000045 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.core</artifactId>
49 <version>1.0.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 <version>1.0.0</version>
55 </dependency>
56 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
63 <extensions>true</extensions>
64 <configuration>
65 <instructions>
Clement Escoffier6b928e92008-05-16 20:33:54 +000066 <Bundle-Vendor>
67 The Apache Software Foundation
68 </Bundle-Vendor>
Clement Escoffiere50ede52008-03-28 15:33:36 +000069 <Private-Package>
70 org.apache.felix.ipojo.handler.wbp
71 </Private-Package>
72 <Bundle-Name>${pom.name}</Bundle-Name>
73 <Bundle-SymbolicName>
74 ipojo.event.admin.handler.wbp
75 </Bundle-SymbolicName>
Clement Escoffier6b928e92008-05-16 20:33:54 +000076 <Include-Resource>
77 META-INF/LICENCE=LICENSE,
78 META-INF/NOTICE=NOTICE
79 </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000080 </instructions>
81 </configuration>
82 </plugin>
83 <plugin>
84 <groupId>org.apache.felix</groupId>
85 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierf459e642008-05-19 01:47:07 +000086 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000087 <executions>
88 <execution>
89 <goals>
90 <goal>ipojo-bundle</goal>
91 </goals>
92 <configuration>
93 <metadata>metadata.xml</metadata>
94 </configuration>
95 </execution>
96 </executions>
97 </plugin>
98 </plugins>
99 </build>
Clement Escoffiere50ede52008-03-28 15:33:36 +0000100</project>