blob: 8bd4c09c804cdf2c3fa83398828c676e153f71a2 [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 Escoffierdc3bc1c2009-01-28 10:56:08 +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 Escoffier6dc59962008-10-14 11:58:21 +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 Escoffier6dc59962008-10-14 11:58:21 +000024 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO White Board Pattern Handler</name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000029 <artifactId> org.apache.felix.ipojo.handler.whiteboard </artifactId>
Clement Escoffier6dc59962008-10-14 11:58:21 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier0dbd01c2009-01-28 10:56:33 +000031 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000032 <dependencies>
33 <dependency>
34 <groupId>org.apache.felix</groupId>
35 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierb6d05612009-01-28 15:45:23 +000036 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
Clement Escoffier6dc59962008-10-14 11:58:21 +000040 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000041 <version>1.0.1</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000042 </dependency>
Clement Escoffier6dc59962008-10-14 11:58:21 +000043 </dependencies>
Clement Escoffier6dc59962008-10-14 11:58:21 +000044 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
49 <extensions>true</extensions>
50 <configuration>
51 <instructions>
52 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000053 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000054 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
55 <Bundle-Description> iPOJO White-Board Pattern Handler
Clement Escoffier6dc59962008-10-14 11:58:21 +000056 </Bundle-Description>
57 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000058 http://felix.apache.org/site/white-board-pattern-handler.html
Clement Escoffier6dc59962008-10-14 11:58:21 +000059 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000060 <Private-Package> org.apache.felix.ipojo.handler.wbp
Clement Escoffier6dc59962008-10-14 11:58:21 +000061 </Private-Package>
62 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000063 <Include-Resource> META-INF/LICENCE=LICENSE,
64 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffier6dc59962008-10-14 11:58:21 +000065 </instructions>
66 </configuration>
67 </plugin>
68 <plugin>
69 <groupId>org.apache.felix</groupId>
70 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierb6d05612009-01-28 15:45:23 +000071 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier6dc59962008-10-14 11:58:21 +000072 <executions>
73 <execution>
74 <goals>
75 <goal>ipojo-bundle</goal>
76 </goals>
77 <configuration>
78 <metadata>metadata.xml</metadata>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000083 <plugin>
84 <groupId>org.codehaus.mojo</groupId>
85 <artifactId>rat-maven-plugin</artifactId>
86 <configuration>
87 <excludeSubProjects>false</excludeSubProjects>
88 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
89 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
90 <excludes>
91 <param>doc/**/*</param>
92 <param>maven-eclipse.xml</param>
93 <param>.checkstyle</param>
94 <param>.externalToolBuilders/*</param>
95 <param>LICENSE.asm</param>
96 </excludes>
97 </configuration>
98 </plugin>
99 <plugin>
100 <groupId>org.apache.maven.plugins</groupId>
101 <artifactId>maven-checkstyle-plugin</artifactId>
102 <configuration>
103 <enableRulesSummary>false</enableRulesSummary>
104 <violationSeverity>warning</violationSeverity>
105 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
106 </configuration>
107 </plugin>
Clement Escoffier6dc59962008-10-14 11:58:21 +0000108 </plugins>
109 </build>
Clement Escoffier6dc59962008-10-14 11:58:21 +0000110</project>