Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 1 | <!--
|
| 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 Escoffier | d4395d5 | 2008-05-18 23:11:32 +0000 | [diff] [blame] | 19 | <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 Escoffier | 6b928e9 | 2008-05-16 20:33:54 +0000 | [diff] [blame] | 20 | <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 Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
| 28 | <name>Apache Felix iPOJO White Board Pattern Handler</name>
|
| 29 | <artifactId>
|
Clement Escoffier | 29b170a | 2008-07-24 08:23:17 +0000 | [diff] [blame] | 30 | org.apache.felix.ipojo.handler.whiteboard
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 31 | </artifactId>
|
Clement Escoffier | a414211 | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 32 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 72c2533 | 2008-05-18 23:11:41 +0000 | [diff] [blame] | 33 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 34 |
|
| 35 | <dependencies>
|
| 36 | <dependency>
|
| 37 | <groupId>org.apache.felix</groupId>
|
| 38 | <artifactId>org.apache.felix.ipojo</artifactId>
|
Clement Escoffier | f459e64 | 2008-05-19 01:47:07 +0000 | [diff] [blame] | 39 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 40 | </dependency>
|
| 41 | <dependency>
|
| 42 | <groupId>org.apache.felix</groupId>
|
| 43 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | f459e64 | 2008-05-19 01:47:07 +0000 | [diff] [blame] | 44 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 45 | </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 Escoffier | 06c1d31 | 2008-08-13 14:14:55 +0000 | [diff] [blame] | 66 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 67 | <Bundle-SymbolicName>
|
| 68 | org.apache.felix.ipojo.handler.whiteboard
|
| 69 | </Bundle-SymbolicName>
|
Clement Escoffier | 6b928e9 | 2008-05-16 20:33:54 +0000 | [diff] [blame] | 70 | <Bundle-Vendor>
|
| 71 | The Apache Software Foundation
|
| 72 | </Bundle-Vendor>
|
Clement Escoffier | 06c1d31 | 2008-08-13 14:14:55 +0000 | [diff] [blame] | 73 | <Bundle-Description>
|
| 74 | iPOJO White-Board Pattern Handler
|
| 75 | </Bundle-Description>
|
| 76 | <Bundle-DocURL>
|
| 77 | http://felix.apache.org/site/white-board-pattern-handler.html
|
| 78 | </Bundle-DocURL>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 79 | <Private-Package>
|
| 80 | org.apache.felix.ipojo.handler.wbp
|
| 81 | </Private-Package>
|
| 82 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 83 | <Bundle-SymbolicName>
|
| 84 | ipojo.event.admin.handler.wbp
|
| 85 | </Bundle-SymbolicName>
|
Clement Escoffier | 6b928e9 | 2008-05-16 20:33:54 +0000 | [diff] [blame] | 86 | <Include-Resource>
|
| 87 | META-INF/LICENCE=LICENSE,
|
| 88 | META-INF/NOTICE=NOTICE
|
| 89 | </Include-Resource>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 90 | </instructions>
|
| 91 | </configuration>
|
| 92 | </plugin>
|
| 93 | <plugin>
|
| 94 | <groupId>org.apache.felix</groupId>
|
| 95 | <artifactId>maven-ipojo-plugin</artifactId>
|
Clement Escoffier | f459e64 | 2008-05-19 01:47:07 +0000 | [diff] [blame] | 96 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 97 | <executions>
|
| 98 | <execution>
|
| 99 | <goals>
|
| 100 | <goal>ipojo-bundle</goal>
|
| 101 | </goals>
|
| 102 | <configuration>
|
| 103 | <metadata>metadata.xml</metadata>
|
| 104 | </configuration>
|
| 105 | </execution>
|
| 106 | </executions>
|
| 107 | </plugin>
|
| 108 | </plugins>
|
| 109 | </build>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 110 | </project>
|