Clement Escoffier | a96c1ff | 2008-07-23 09:14:00 +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 | -->
|
| 19 | <project>
|
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +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 | a96c1ff | 2008-07-23 09:14:00 +0000 | [diff] [blame] | 26 | <modelVersion>4.0.0</modelVersion>
|
| 27 | <packaging>bundle</packaging>
|
| 28 | <name>Apache Felix iPOJO Event Admin Handler</name>
|
Clement Escoffier | 06c0ecf | 2008-07-30 17:50:39 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
|
Clement Escoffier | a96c1ff | 2008-07-23 09:14:00 +0000 | [diff] [blame] | 30 | <version>0.9.0-SNAPSHOT</version>
|
| 31 |
|
| 32 | <dependencies>
|
| 33 | <dependency>
|
| 34 | <groupId>org.apache.felix</groupId>
|
| 35 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 36 | <version>0.9.0-SNAPSHOT</version>
|
| 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 41 | <version>0.9.0-SNAPSHOT</version>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>org.apache.felix</groupId>
|
| 45 | <artifactId>org.osgi.core</artifactId>
|
| 46 | <version>1.0.0</version>
|
| 47 | </dependency>
|
| 48 | <dependency>
|
| 49 | <groupId>org.apache.felix</groupId>
|
| 50 | <artifactId>org.osgi.compendium</artifactId>
|
| 51 | <version>1.0.0</version>
|
| 52 | </dependency>
|
| 53 | </dependencies>
|
| 54 |
|
| 55 | <build>
|
| 56 | <plugins>
|
| 57 | <plugin>
|
| 58 | <groupId>org.apache.felix</groupId>
|
| 59 | <artifactId>maven-bundle-plugin</artifactId>
|
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame] | 60 | <version>1.4.2</version>
|
Clement Escoffier | a96c1ff | 2008-07-23 09:14:00 +0000 | [diff] [blame] | 61 | <extensions>true</extensions>
|
| 62 | <configuration>
|
| 63 | <instructions>
|
| 64 | <Export-Package>org.apache.felix.ipojo.handlers.event.*;
|
| 65 | version="0.9.0"</Export-Package>
|
| 66 | <Bundle-Name>${pom.name}</Bundle-Name>
|
Clement Escoffier | 9fc9a3c | 2008-08-11 09:55:34 +0000 | [diff] [blame] | 67 | <Bundle-SymbolicName>
|
| 68 | org.apache.felix.ipojo.handler.eventadmin
|
| 69 | </Bundle-SymbolicName>
|
Clement Escoffier | 2ae452a | 2008-08-13 14:14:55 +0000 | [diff] [blame] | 70 | <Bundle-Description>
|
| 71 | iPOJO Event Admin Handlers
|
| 72 | </Bundle-Description>
|
| 73 | <Bundle-DocURL>
|
| 74 | http://felix.apache.org/site/event-admin-handlers.html
|
| 75 | </Bundle-DocURL>
|
Clement Escoffier | a96c1ff | 2008-07-23 09:14:00 +0000 | [diff] [blame] | 76 | <Bundle-Vendor>The Apache Software
|
| 77 | Foundation</Bundle-Vendor>
|
| 78 | <Include-Resource>
|
| 79 | META-INF/LICENCE=LICENSE,
|
| 80 | META-INF/NOTICE=NOTICE
|
| 81 | </Include-Resource>
|
| 82 | </instructions>
|
| 83 | </configuration>
|
| 84 | </plugin>
|
| 85 | <plugin>
|
| 86 | <groupId>org.apache.felix</groupId>
|
| 87 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 88 | <version>0.9.0-SNAPSHOT</version>
|
| 89 | <executions>
|
| 90 | <execution>
|
| 91 | <goals>
|
| 92 | <goal>ipojo-bundle</goal>
|
| 93 | </goals>
|
| 94 | <configuration>
|
| 95 | <metadata>metadata.xml</metadata>
|
| 96 | </configuration>
|
| 97 | </execution>
|
| 98 | </executions>
|
| 99 | </plugin>
|
| 100 | </plugins>
|
| 101 | </build>
|
| 102 | </project>
|