blob: 196659312d14dd81f6e22988fc8f889f5b47fa60 [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 Escoffierbe08ded2009-01-28 10:49:54 +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>
23 <version>1.2.0</version>
24 <relativePath>../../pom/pom.xml</relativePath>
25 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <packaging>bundle</packaging>
28 <name>Apache Felix iPOJO Extender Pattern Handler</name>
29 <artifactId> org.apache.felix.ipojo.handler.extender </artifactId>
30 <groupId>org.apache.felix</groupId>
Clement Escoffier8e871ea2009-07-21 19:25:18 +000031 <version>1.4.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000032
33 <description>
34 iPOJO extension to implement an extender pattern (host).
35 </description>
36 <url>http://felix.apache.org/site/extender-pattern-handler.html</url>
37
38 <dependencies>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffierc3e2fc12009-07-21 19:23:50 +000042 <version>1.4.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.osgi.core</artifactId>
47 <version>1.0.1</version>
48 </dependency>
49 </dependencies>
50 <build>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.felix</groupId>
54 <artifactId>maven-bundle-plugin</artifactId>
55 <extensions>true</extensions>
56 <configuration>
57 <instructions>
58 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
59 <Bundle-Description> iPOJO Extender Pattern Handler
60 </Bundle-Description>
61 <Bundle-DocURL>
62 http://felix.apache.org/site/extender-pattern-handler.html
63 </Bundle-DocURL>
64 <Private-Package> org.apache.felix.ipojo.handler.extender
65 </Private-Package>
66 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
67 <Bundle-Name>${pom.name}</Bundle-Name>
68 <Include-Resource> META-INF/LICENSE=LICENSE,
69 META-INF/NOTICE=NOTICE </Include-Resource>
70 </instructions>
71 </configuration>
72 </plugin>
73 <plugin>
74 <groupId>org.apache.felix</groupId>
75 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierc3e2fc12009-07-21 19:23:50 +000076 <version>1.4.0</version>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000077 <executions>
78 <execution>
79 <goals>
80 <goal>ipojo-bundle</goal>
81 </goals>
82 <configuration>
83 <metadata>metadata.xml</metadata>
84 </configuration>
85 </execution>
86 </executions>
87 </plugin>
88 <plugin>
89 <groupId>org.codehaus.mojo</groupId>
90 <artifactId>rat-maven-plugin</artifactId>
91 <configuration>
92 <excludeSubProjects>false</excludeSubProjects>
93 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
94 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
95 <excludes>
96 <param>doc/**/*</param>
97 <param>maven-eclipse.xml</param>
98 <param>.checkstyle</param>
99 <param>.externalToolBuilders/*</param>
100 <param>LICENSE.asm</param>
101 </excludes>
102 </configuration>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-checkstyle-plugin</artifactId>
107 <configuration>
108 <enableRulesSummary>false</enableRulesSummary>
109 <violationSeverity>warning</violationSeverity>
110 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
111 </configuration>
112 </plugin>
113 </plugins>
114 </build>
Clement Escoffier8e871ea2009-07-21 19:25:18 +0000115
116 <scm>
117 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.4.0</connection>
118 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.4.0</developerConnection>
119 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.4.0</url>
120 </scm>
Clement Escoffierbfa74d02009-07-19 16:25:18 +0000121</project>