blob: fc25729a1adeee5401fe34df39285351cef5e621 [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 Escoffier818b00d2008-10-14 11:37:34 +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">
20 <parent>
21 <groupId>org.apache.felix</groupId>
22 <artifactId>felix</artifactId>
23 <version>1.0.2</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>
30 org.apache.felix.ipojo.handler.extender
31 </artifactId>
32 <groupId>org.apache.felix</groupId>
33 <version>1.0.0</version>
34
35 <dependencies>
36 <dependency>
37 <groupId>org.apache.felix</groupId>
38 <artifactId>org.apache.felix.ipojo</artifactId>
39 <version>1.0.0</version>
40 </dependency>
41 <dependency>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
44 <version>1.0.0</version>
45 </dependency>
46 <dependency>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>org.osgi.core</artifactId>
49 <version>1.0.0</version>
50 </dependency>
51 <dependency>
52 <groupId>org.apache.felix</groupId>
53 <artifactId>org.osgi.compendium</artifactId>
54 <version>1.0.0</version>
55 </dependency>
56 </dependencies>
57
58 <build>
59 <plugins>
60 <plugin>
61 <groupId>org.apache.felix</groupId>
62 <artifactId>maven-bundle-plugin</artifactId>
63 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-Vendor>
67 The Apache Software Foundation
68 </Bundle-Vendor>
69 <Bundle-Description>
70 iPOJO Extender Pattern Handler
71 </Bundle-Description>
72 <Bundle-DocURL>
73 http://felix.apache.org/site/extender-pattern-handler.html
74 </Bundle-DocURL>
75 <Private-Package>
76 org.apache.felix.ipojo.handler.extender
77 </Private-Package>
78 <Bundle-Name>${pom.name}</Bundle-Name>
79 <Bundle-SymbolicName>
80 org.apache.felix.ipojo.handler.extender.pattern
81 </Bundle-SymbolicName>
82 <Include-Resource>
83 META-INF/LICENCE=LICENSE,
84 META-INF/NOTICE=NOTICE
85 </Include-Resource>
86 </instructions>
87 </configuration>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.felix</groupId>
91 <artifactId>maven-ipojo-plugin</artifactId>
92 <version>1.0.0</version>
93 <executions>
94 <execution>
95 <goals>
96 <goal>ipojo-bundle</goal>
97 </goals>
98 <configuration>
99 <metadata>metadata.xml</metadata>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 </plugins>
105 </build>
106
107 <scm>
108 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</connection>
109 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</developerConnection>
110 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.handler.extender-1.0.0</url>
111 </scm>
112</project>