blob: 1ebb6a9ac1f72c3cb3c24103a8178b34dcc5aad6 [file] [log] [blame]
Clement Escoffier9236df92008-05-18 22:42:39 +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 Escoffier14890702008-05-16 21:22:58 +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 Escoffiere50ede52008-03-28 15:33:36 +000020 <parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiera4142112008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffiere50ede52008-03-28 15:33:36 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffiera4142112008-03-29 15:04:02 +000028 <groupId>org.apache.felix</groupId>
Clement Escoffier475e9b12008-10-14 08:24:19 +000029 <version>1.1.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Metadata</name>
32 <build>
33 <plugins>
34 <plugin>
35 <groupId>org.apache.felix</groupId>
36 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffier6ed6c4e2008-08-11 09:55:34 +000037 <version>1.4.2</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000038 <extensions>true</extensions>
39 <configuration>
40 <instructions>
41 <Bundle-Name>iPOJO Metadata</Bundle-Name>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000042 <Bundle-Vendor>
43 The Apache Software Foundation
44 </Bundle-Vendor>
Clement Escoffiere50ede52008-03-28 15:33:36 +000045 <Bundle-Description>
46 iPOJO Metadata
47 </Bundle-Description>
48 <Export-Package>
49 org.apache.felix.ipojo.metadata
50 </Export-Package>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000051 <Include-Resource>
52 META-INF/LICENCE=LICENSE,
53 META-INF/NOTICE=NOTICE
54 </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000055 </instructions>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
Clement Escoffierb10317e2008-05-16 22:57:48 +000060</project>