Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +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 | dbddbbe | 2007-10-21 08:43:36 +0000 | [diff] [blame] | 19 | <project>
|
| 20 | <modelVersion>4.0.0</modelVersion>
|
| 21 | <packaging>bundle</packaging>
|
| 22 | <name>iPOJO Event Admin Handler</name>
|
| 23 | <groupId>org.apache.felix</groupId>
|
| 24 | <version>0.7.5-SNAPSHOT</version>
|
| 25 | <artifactId>org.apache.felix.ipojo.handler.event</artifactId>
|
| 26 |
|
| 27 | <dependencies>
|
| 28 | <dependency>
|
| 29 | <groupId>org.apache.felix</groupId>
|
| 30 | <artifactId>org.apache.felix.ipojo</artifactId>
|
| 31 | <version>0.7.5-SNAPSHOT</version>
|
| 32 | </dependency>
|
| 33 | <dependency>
|
| 34 | <groupId>org.apache.felix</groupId>
|
| 35 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 36 | <version>0.7.5-SNAPSHOT</version>
|
| 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>org.osgi.core</artifactId>
|
| 41 | <version>1.1.0-SNAPSHOT</version>
|
| 42 | </dependency>
|
| 43 | <dependency>
|
| 44 | <groupId>org.apache.felix</groupId>
|
| 45 | <artifactId>org.osgi.compendium</artifactId>
|
| 46 | <version>0.9.0-SNAPSHOT</version>
|
| 47 | </dependency>
|
| 48 | </dependencies>
|
| 49 |
|
| 50 |
|
| 51 |
|
| 52 | <build>
|
| 53 | <plugins>
|
| 54 | <plugin>
|
| 55 | <groupId>org.apache.felix</groupId>
|
| 56 | <artifactId>maven-bundle-plugin</artifactId>
|
| 57 | <extensions>true</extensions>
|
| 58 | <configuration>
|
| 59 | <instructions>
|
| 60 | <Private-Package>org.apache.felix.ipojo.handler.event</Private-Package>
|
| 61 | <Bundle-Name>${pom.name}</Bundle-Name>
|
| 62 | <Bundle-SymbolicName>ipojo.event.admin.handler</Bundle-SymbolicName>
|
| 63 | </instructions>
|
| 64 | </configuration>
|
| 65 | </plugin>
|
| 66 | <plugin>
|
| 67 | <groupId>org.apache.felix</groupId>
|
| 68 | <artifactId>maven-ipojo-plugin</artifactId>
|
| 69 | <version>${pom.version}</version>
|
| 70 | <executions>
|
| 71 | <execution>
|
| 72 | <goals>
|
| 73 | <goal>ipojo-bundle</goal>
|
| 74 | </goals>
|
| 75 | <configuration>
|
| 76 | <metadata>metadata.xml</metadata>
|
| 77 | </configuration>
|
| 78 | </execution>
|
| 79 | </executions>
|
| 80 | </plugin>
|
| 81 | </plugins>
|
| 82 | </build>
|
| 83 | </project>
|