blob: 38354a7a08ba4f4fff0111bb0165bb31f3372677 [file] [log] [blame]
Clement Escoffier3514b3a2008-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
Clement Escoffierc80b73d2009-07-03 13:16:24 +00009
Clement Escoffier3514b3a2008-10-14 11:28:35 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffierc80b73d2009-07-03 13:16:24 +000011
Clement Escoffier3514b3a2008-10-14 11:28:35 +000012 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 Escoffier512f1cd2009-01-28 10:48:04 +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">
Clement Escoffiera48feac2008-10-14 11:20:09 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
Clement Escoffierce123392009-04-30 14:00:40 +000022 <artifactId>felix-parent</artifactId>
23 <version>1.2.0</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000024 <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 Escoffier599281b2009-01-28 10:48:33 +000030 <version>1.3.0-SNAPSHOT</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000031 <dependencies>
32 <dependency>
33 <groupId>org.apache.felix</groupId>
34 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000035 <version>${pom.version}</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000036 </dependency>
37 <dependency>
38 <groupId>org.apache.felix</groupId>
Clement Escoffiera48feac2008-10-14 11:20:09 +000039 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000040 <version>1.0.1</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000041 </dependency>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.osgi.compendium</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000045 <version>1.2.0</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000046 </dependency>
47 </dependencies>
Clement Escoffiera48feac2008-10-14 11:20:09 +000048 <build>
49 <plugins>
50 <plugin>
51 <groupId>org.apache.felix</groupId>
52 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000053 <version>1.4.3</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000054 <extensions>true</extensions>
55 <configuration>
56 <instructions>
57 <Export-Package>org.apache.felix.ipojo.handlers.event.*;
Clement Escoffier2769dc82009-01-28 10:44:07 +000058 version="1.2.0"</Export-Package>
Clement Escoffiera48feac2008-10-14 11:20:09 +000059 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000060 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000061 <Bundle-Description> iPOJO Event Admin Handlers
Clement Escoffiera48feac2008-10-14 11:20:09 +000062 </Bundle-Description>
63 <Bundle-DocURL>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000064 http://felix.apache.org/site/event-admin-handlers.html
Clement Escoffiera48feac2008-10-14 11:20:09 +000065 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000066 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
67 <Include-Resource> META-INF/LICENCE=LICENSE,
68 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffiera48feac2008-10-14 11:20:09 +000069 </instructions>
70 </configuration>
71 </plugin>
72 <plugin>
73 <groupId>org.apache.felix</groupId>
74 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierc80b73d2009-07-03 13:16:24 +000075 <version>${pom.version}</version>
Clement Escoffiera48feac2008-10-14 11:20:09 +000076 <executions>
77 <execution>
78 <goals>
79 <goal>ipojo-bundle</goal>
80 </goals>
81 <configuration>
82 <metadata>metadata.xml</metadata>
83 </configuration>
84 </execution>
85 </executions>
86 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000087 <plugin>
88 <groupId>org.codehaus.mojo</groupId>
89 <artifactId>rat-maven-plugin</artifactId>
90 <configuration>
91 <excludeSubProjects>false</excludeSubProjects>
92 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
93 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
94 <excludes>
95 <param>doc/**/*</param>
96 <param>maven-eclipse.xml</param>
97 <param>.checkstyle</param>
98 <param>.externalToolBuilders/*</param>
99 <param>LICENSE.asm</param>
100 </excludes>
101 </configuration>
102 </plugin>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-checkstyle-plugin</artifactId>
106 <configuration>
107 <enableRulesSummary>false</enableRulesSummary>
108 <violationSeverity>warning</violationSeverity>
109 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
110 </configuration>
111 </plugin>
Clement Escoffiera48feac2008-10-14 11:20:09 +0000112 </plugins>
113 </build>
Clement Escoffiera48feac2008-10-14 11:20:09 +0000114</project>