blob: 1a917be2f73679da37274e5232d8c17bec0d7048 [file] [log] [blame]
Clement Escoffier6e6565d2008-10-14 11:59:25 +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 Escoffierb8fe1372008-11-20 15:51:56 +000019<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">
Clement Escoffier6dc59962008-10-14 11:58:21 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
24 <version>1.0.2</version>
25 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <name>Apache Felix iPOJO White Board Pattern Handler</name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000030 <artifactId> org.apache.felix.ipojo.handler.whiteboard </artifactId>
Clement Escoffier6dc59962008-10-14 11:58:21 +000031 <groupId>org.apache.felix</groupId>
Clement Escoffier818e6922008-10-14 13:55:56 +000032 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000033 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000037 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000038 </dependency>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
Clement Escoffier6dc59962008-10-14 11:58:21 +000041 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000042 <version>1.0.1</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000043 </dependency>
Clement Escoffier6dc59962008-10-14 11:58:21 +000044 </dependencies>
Clement Escoffier6dc59962008-10-14 11:58:21 +000045 <build>
46 <plugins>
47 <plugin>
48 <groupId>org.apache.felix</groupId>
49 <artifactId>maven-bundle-plugin</artifactId>
50 <extensions>true</extensions>
51 <configuration>
52 <instructions>
53 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000054 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000055 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
56 <Bundle-Description> iPOJO White-Board Pattern Handler
Clement Escoffier6dc59962008-10-14 11:58:21 +000057 </Bundle-Description>
58 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000059 http://felix.apache.org/site/white-board-pattern-handler.html
Clement Escoffier6dc59962008-10-14 11:58:21 +000060 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000061 <Private-Package> org.apache.felix.ipojo.handler.wbp
Clement Escoffier6dc59962008-10-14 11:58:21 +000062 </Private-Package>
63 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000064 <Bundle-SymbolicName> ipojo.event.admin.handler.wbp
Clement Escoffier6dc59962008-10-14 11:58:21 +000065 </Bundle-SymbolicName>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000066 <Include-Resource> META-INF/LICENCE=LICENSE,
67 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffier6dc59962008-10-14 11:58:21 +000068 </instructions>
69 </configuration>
70 </plugin>
71 <plugin>
72 <groupId>org.apache.felix</groupId>
73 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier818e6922008-10-14 13:55:56 +000074 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000075 <executions>
76 <execution>
77 <goals>
78 <goal>ipojo-bundle</goal>
79 </goals>
80 <configuration>
81 <metadata>metadata.xml</metadata>
82 </configuration>
83 </execution>
84 </executions>
85 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000086 <plugin>
87 <groupId>org.codehaus.mojo</groupId>
88 <artifactId>rat-maven-plugin</artifactId>
89 <configuration>
90 <excludeSubProjects>false</excludeSubProjects>
91 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
92 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
93 <excludes>
94 <param>doc/**/*</param>
95 <param>maven-eclipse.xml</param>
96 <param>.checkstyle</param>
97 <param>.externalToolBuilders/*</param>
98 <param>LICENSE.asm</param>
99 </excludes>
100 </configuration>
101 </plugin>
102 <plugin>
103 <groupId>org.apache.maven.plugins</groupId>
104 <artifactId>maven-checkstyle-plugin</artifactId>
105 <configuration>
106 <enableRulesSummary>false</enableRulesSummary>
107 <violationSeverity>warning</violationSeverity>
108 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
109 </configuration>
110 </plugin>
Clement Escoffier6dc59962008-10-14 11:58:21 +0000111 </plugins>
112 </build>
Clement Escoffier6dc59962008-10-14 11:58:21 +0000113</project>