blob: 04fad14a978521c26df1474899d71de11d936fcb [file] [log] [blame]
Clement Escoffiera2450d72008-10-14 11:28:35 +00001<!--
Clement Escoffierbfa74d02009-07-19 16:25:18 +00002 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 Escoffier0b93f382009-07-03 13:16:24 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier0b93f382009-07-03 13:16:24 +000011
Clement Escoffierbfa74d02009-07-19 16:25:18 +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.
Clement Escoffiera2450d72008-10-14 11:28:35 +000018-->
Clement Escoffier01d35092009-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 Escoffierbfa74d02009-07-19 16:25:18 +000020 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix-parent</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000023 <version>1.2.1</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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 Escoffier8454b502009-07-21 19:19:56 +000030 <version>1.5.0-SNAPSHOT</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000031
32 <description>
33 iPOJO extension to easily interact with the OSGi Event Admin.
34 </description>
35 <url>http://felix.apache.org/site/event-admin-handlers.html</url>
36
37 <dependencies>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier41f61f52009-07-21 19:21:59 +000041 <version>${pom.version}</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000042 </dependency>
43 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000044 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000045 <artifactId>org.osgi.core</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000046 <version>4.0.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000047 </dependency>
48 <dependency>
Clement Escoffier86215df2010-04-16 13:54:16 +000049 <groupId>org.osgi</groupId>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000050 <artifactId>org.osgi.compendium</artifactId>
Clement Escoffier86215df2010-04-16 13:54:16 +000051 <version>4.0.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000052 </dependency>
53 </dependencies>
54 <build>
55 <plugins>
56 <plugin>
57 <groupId>org.apache.felix</groupId>
58 <artifactId>maven-bundle-plugin</artifactId>
59 <version>1.4.3</version>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
63 <Export-Package>org.apache.felix.ipojo.handlers.event.*;
64 version="1.2.0"</Export-Package>
65 <Bundle-Name>${pom.name}</Bundle-Name>
66 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
67 <Bundle-Description> iPOJO Event Admin Handlers
68 </Bundle-Description>
69 <Bundle-DocURL>
70 http://felix.apache.org/site/event-admin-handlers.html
71 </Bundle-DocURL>
72 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
73 <Include-Resource> META-INF/LICENSE=LICENSE,
74 META-INF/NOTICE=NOTICE </Include-Resource>
75 </instructions>
76 </configuration>
77 </plugin>
78 <plugin>
79 <groupId>org.apache.felix</groupId>
80 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier41f61f52009-07-21 19:21:59 +000081 <version>${pom.version}</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +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>
94 <groupId>org.codehaus.mojo</groupId>
95 <artifactId>rat-maven-plugin</artifactId>
96 <configuration>
97 <excludeSubProjects>false</excludeSubProjects>
98 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
99 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
100 <excludes>
101 <param>doc/**/*</param>
102 <param>maven-eclipse.xml</param>
103 <param>.checkstyle</param>
104 <param>.externalToolBuilders/*</param>
105 <param>LICENSE.asm</param>
106 </excludes>
107 </configuration>
108 </plugin>
109 <plugin>
110 <groupId>org.apache.maven.plugins</groupId>
111 <artifactId>maven-checkstyle-plugin</artifactId>
112 <configuration>
113 <enableRulesSummary>false</enableRulesSummary>
114 <violationSeverity>warning</violationSeverity>
115 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
116 </configuration>
117 </plugin>
118 </plugins>
119 </build>
120</project>