blob: 873e87d59b507efb1306b5762347eff9c709fdab [file] [log] [blame]
Clement Escoffierd9571952013-02-27 15:51:08 +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-->
19<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
Clement Escoffierd9571952013-02-27 15:51:08 +000025 <relativePath>../../../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>Apache Felix iPOJO Event Admin Handler</name>
30 <artifactId>org.apache.felix.ipojo.handler.eventadmin</artifactId>
31 <version>1.9.0-SNAPSHOT</version>
32
33 <description>
34 iPOJO extension to easily interact with the OSGi Event Admin.
35 </description>
Clement Escoffierb76fae72013-05-28 04:37:54 +000036 <url>
37 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/event-admin-handlers.html
38 </url>
Clement Escoffierd9571952013-02-27 15:51:08 +000039
Clement Escoffierd9571952013-02-27 15:51:08 +000040 <dependencies>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier65890bf2013-06-22 05:21:51 +000044 <version>1.10.0</version>
Clement Escoffierd9571952013-02-27 15:51:08 +000045 </dependency>
46 <dependency>
47 <groupId>org.osgi</groupId>
48 <artifactId>org.osgi.core</artifactId>
49 <version>4.2.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.osgi</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 <version>4.2.0</version>
55 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000062 <version>2.3.7</version>
Clement Escoffierd9571952013-02-27 15:51:08 +000063 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Export-Package>org.apache.felix.ipojo.handlers.event*;version="1.2.0"</Export-Package>
67 <Bundle-Name>${project.name}</Bundle-Name>
68 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
69 <Bundle-Description>iPOJO Event Admin Handlers
70 </Bundle-Description>
71 <Bundle-DocURL>
Clement Escoffierb76fae72013-05-28 04:37:54 +000072 http://felix.apache.org/documentation/subprojects/apache-felix-ipojo/apache-felix-ipojo-userguide/describing-components/event-admin-handlers.html
Clement Escoffierd9571952013-02-27 15:51:08 +000073 </Bundle-DocURL>
74 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Clement Escoffierd9571952013-02-27 15:51:08 +000075 </instructions>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier65890bf2013-06-22 05:21:51 +000081 <version>1.10.0</version>
Clement Escoffierd9571952013-02-27 15:51:08 +000082 <executions>
83 <execution>
84 <goals>
85 <goal>ipojo-bundle</goal>
86 </goals>
87 <configuration>
88 <metadata>metadata.xml</metadata>
89 </configuration>
90 </execution>
91 </executions>
92 </plugin>
93 <plugin>
Clement Escoffierd9571952013-02-27 15:51:08 +000094 <groupId>org.apache.maven.plugins</groupId>
95 <artifactId>maven-checkstyle-plugin</artifactId>
96 <configuration>
97 <enableRulesSummary>false</enableRulesSummary>
98 <violationSeverity>warning</violationSeverity>
99 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-compiler-plugin</artifactId>
105 <version>2.5.1</version>
106 <configuration>
107 <source>1.6</source>
108 <target>1.6</target>
109 </configuration>
110 </plugin>
111 </plugins>
112 </build>
Clement Escoffierd9571952013-02-27 15:51:08 +0000113</project>