blob: 673b698810e7ad152ba3b6a6d96f0f251d6bb56f [file] [log] [blame]
Clement Escoffier85b36052013-03-07 20:00:30 +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>
24 <version>1.2.1</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>
30 <artifactId>org.apache.felix.ipojo.handler.whiteboard</artifactId>
31 <groupId>org.apache.felix</groupId>
32 <version>1.6.1-SNAPSHOT</version>
33
34 <description>
35 iPOJO extension to easily implement a white-board pattern (host).
36 </description>
37 <url>
38 http://felix.apache.org/site/white-board-pattern-handler.html
39 </url>
40
41 <dependencies>
42 <dependency>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.apache.felix.ipojo</artifactId>
45 <version>1.6.4</version>
46 </dependency>
47 <dependency>
48 <groupId>org.osgi</groupId>
49 <artifactId>org.osgi.core</artifactId>
50 <version>4.0.0</version>
51 </dependency>
52 </dependencies>
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <extensions>true</extensions>
59 <configuration>
60 <instructions>
61 <Bundle-Name>${project.name}</Bundle-Name>
62 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
63 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
64 <Bundle-Description>iPOJO White-Board Pattern Handler
65 </Bundle-Description>
66 <Bundle-DocURL>
67 http://felix.apache.org/site/white-board-pattern-handler.html
68 </Bundle-DocURL>
69 <Private-Package>org.apache.felix.ipojo.handler.wbp
70 </Private-Package>
71 <Bundle-Name>${project.name}</Bundle-Name>
72 <Include-Resource>
73 META-INF/LICENSE=LICENSE,
74 META-INF/NOTICE=NOTICE,
75 META-INF/DEPENDENCIES=DEPENDENCIES
76 </Include-Resource>
77 </instructions>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-ipojo-plugin</artifactId>
83 <version>1.6.0</version>
84 <executions>
85 <execution>
86 <goals>
87 <goal>ipojo-bundle</goal>
88 </goals>
89 <configuration>
90 <metadata>metadata.xml</metadata>
91 </configuration>
92 </execution>
93 </executions>
94 </plugin>
95 <plugin>
96 <groupId>org.codehaus.mojo</groupId>
97 <artifactId>rat-maven-plugin</artifactId>
98 <configuration>
99 <excludeSubProjects>false</excludeSubProjects>
100 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
101 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
102 <excludes>
103 <param>doc/**/*</param>
104 <param>maven-eclipse.xml</param>
105 <param>.checkstyle</param>
106 <param>.externalToolBuilders/*</param>
107 <param>LICENSE.asm</param>
108 </excludes>
109 </configuration>
110 </plugin>
111 <plugin>
112 <groupId>org.apache.maven.plugins</groupId>
113 <artifactId>maven-checkstyle-plugin</artifactId>
114 <configuration>
115 <enableRulesSummary>false</enableRulesSummary>
116 <violationSeverity>warning</violationSeverity>
117 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
118 </configuration>
119 </plugin>
120 <plugin>
121 <groupId>org.apache.maven.plugins</groupId>
122 <artifactId>maven-compiler-plugin</artifactId>
123 <configuration>
124 <target>1.5</target>
125 <source>1.5</source>
126 </configuration>
127 </plugin>
128 </plugins>
129 </build>
130</project>