blob: bfefbc8460abc437d30e2a38f40b5a8c0505dcb4 [file] [log] [blame]
Clement Escoffiera2450d72008-10-14 11:28:35 +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 Escoffier6fc482c2008-10-14 11:20:09 +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">
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>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO Event Admin Handler</name>
29 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
Clement Escoffiera2450d72008-10-14 11:28:35 +000030 <version>1.0.0</version>
Clement Escoffier6fc482c2008-10-14 11:20:09 +000031
32 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
36 <version>1.0.0</version>
37 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
41 <version>1.0.0</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>
60 <version>1.4.2</version>
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>
67 <Bundle-SymbolicName>
68 org.apache.felix.ipojo.handler.eventadmin
69 </Bundle-SymbolicName>
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>
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>1.0.0</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>
Clement Escoffiera2450d72008-10-14 11:28:35 +0000102
103 <scm>
104 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.0.0</connection>
105 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.0.0</developerConnection>
106 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.eventadmin-1.0.0</url>
107 </scm>
Clement Escoffier6fc482c2008-10-14 11:20:09 +0000108</project>