blob: fc1edd3b6fe6a409ee584d88eaf16a97b8190115 [file] [log] [blame]
Clement Escoffier1604f532008-10-14 11:39:00 +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 Escoffierf4d141a2009-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 Escoffier6c5ca5b2008-10-14 11:37:34 +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 Escoffier6c5ca5b2008-10-14 11:37:34 +000024 <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>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000029 <artifactId> org.apache.felix.ipojo.handler.extender </artifactId>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000030 <groupId>org.apache.felix</groupId>
Clement Escoffier6aa421c2009-01-28 10:50:22 +000031 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +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 Escoffier6c5ca5b2008-10-14 11:37:34 +000037 </dependency>
38 <dependency>
39 <groupId>org.apache.felix</groupId>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000040 <artifactId>org.osgi.core</artifactId>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000041 <version>1.0.1</version>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000042 </dependency>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000043 </dependencies>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +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>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000052 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
53 <Bundle-Description> iPOJO Extender Pattern Handler
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000054 </Bundle-Description>
55 <Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000056 http://felix.apache.org/site/extender-pattern-handler.html
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000057 </Bundle-DocURL>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000058 <Private-Package> org.apache.felix.ipojo.handler.extender
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000059 </Private-Package>
Clement Escoffier23e4adf2008-12-10 12:29:41 +000060 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000061 <Bundle-Name>${pom.name}</Bundle-Name>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000062 <Include-Resource> META-INF/LICENCE=LICENSE,
63 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000064 </instructions>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.apache.felix</groupId>
69 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffierb6d05612009-01-28 15:45:23 +000070 <version>1.3.0-SNAPSHOT</version>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +000071 <executions>
72 <execution>
73 <goals>
74 <goal>ipojo-bundle</goal>
75 </goals>
76 <configuration>
77 <metadata>metadata.xml</metadata>
78 </configuration>
79 </execution>
80 </executions>
81 </plugin>
Clement Escoffierb8fe1372008-11-20 15:51:56 +000082 <plugin>
83 <groupId>org.codehaus.mojo</groupId>
84 <artifactId>rat-maven-plugin</artifactId>
85 <configuration>
86 <excludeSubProjects>false</excludeSubProjects>
87 <useEclipseDefaultExcludes>true</useEclipseDefaultExcludes>
88 <useMavenDefaultExcludes>true</useMavenDefaultExcludes>
89 <excludes>
90 <param>doc/**/*</param>
91 <param>maven-eclipse.xml</param>
92 <param>.checkstyle</param>
93 <param>.externalToolBuilders/*</param>
94 <param>LICENSE.asm</param>
95 </excludes>
96 </configuration>
97 </plugin>
98 <plugin>
99 <groupId>org.apache.maven.plugins</groupId>
100 <artifactId>maven-checkstyle-plugin</artifactId>
101 <configuration>
102 <enableRulesSummary>false</enableRulesSummary>
103 <violationSeverity>warning</violationSeverity>
104 <configLocation>http://felix.apache.org/ipojo/dev/checkstyle_ipojo.xml</configLocation>
105 </configuration>
106 </plugin>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +0000107 </plugins>
108 </build>
Clement Escoffier6c5ca5b2008-10-14 11:37:34 +0000109</project>