blob: 46fbe9dd1ca9bb59fb54372108e68844734d4652 [file] [log] [blame]
Clement Escoffier57ea4e62008-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 Escoffier31f25df2008-11-20 15:51:56 +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">
Clement Escoffier818b00d2008-10-14 11:37:34 +000021 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
24 <version>1.0.2</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>
Clement Escoffier31f25df2008-11-20 15:51:56 +000030 <artifactId> org.apache.felix.ipojo.handler.extender </artifactId>
Clement Escoffier818b00d2008-10-14 11:37:34 +000031 <groupId>org.apache.felix</groupId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000032 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000033 <dependencies>
34 <dependency>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>org.apache.felix.ipojo</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000037 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000038 </dependency>
39 <dependency>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000042 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000043 </dependency>
44 <dependency>
45 <groupId>org.apache.felix</groupId>
46 <artifactId>org.osgi.core</artifactId>
Clement Escoffier31f25df2008-11-20 15:51:56 +000047 <version>1.0.1</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000048 </dependency>
49 <dependency>
50 <groupId>org.apache.felix</groupId>
51 <artifactId>org.osgi.compendium</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000052 <version>1.2.0</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000053 </dependency>
54 </dependencies>
Clement Escoffier818b00d2008-10-14 11:37:34 +000055 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <extensions>true</extensions>
61 <configuration>
62 <instructions>
Clement Escoffier31f25df2008-11-20 15:51:56 +000063 <Bundle-Vendor> The Apache Software Foundation </Bundle-Vendor>
64 <Bundle-Description> iPOJO Extender Pattern Handler
Clement Escoffier818b00d2008-10-14 11:37:34 +000065 </Bundle-Description>
66 <Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000067 http://felix.apache.org/site/extender-pattern-handler.html
Clement Escoffier818b00d2008-10-14 11:37:34 +000068 </Bundle-DocURL>
Clement Escoffier31f25df2008-11-20 15:51:56 +000069 <Private-Package> org.apache.felix.ipojo.handler.extender
Clement Escoffier818b00d2008-10-14 11:37:34 +000070 </Private-Package>
71 <Bundle-Name>${pom.name}</Bundle-Name>
72 <Bundle-SymbolicName>
Clement Escoffier31f25df2008-11-20 15:51:56 +000073 org.apache.felix.ipojo.handler.extender.pattern
Clement Escoffier818b00d2008-10-14 11:37:34 +000074 </Bundle-SymbolicName>
Clement Escoffier31f25df2008-11-20 15:51:56 +000075 <Include-Resource> META-INF/LICENCE=LICENSE,
76 META-INF/NOTICE=NOTICE </Include-Resource>
Clement Escoffier818b00d2008-10-14 11:37:34 +000077 </instructions>
78 </configuration>
79 </plugin>
80 <plugin>
81 <groupId>org.apache.felix</groupId>
82 <artifactId>maven-ipojo-plugin</artifactId>
Clement Escoffier2e9f4b32008-10-14 13:55:56 +000083 <version>1.1.0-SNAPSHOT</version>
Clement Escoffier818b00d2008-10-14 11:37:34 +000084 <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>
Clement Escoffier31f25df2008-11-20 15:51:56 +000095 <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>
Clement Escoffier818b00d2008-10-14 11:37:34 +0000120 </plugins>
121 </build>
Clement Escoffier818b00d2008-10-14 11:37:34 +0000122</project>