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