blob: 732cdc7fe42be4bb7ba39d5b44a5515a372713de [file] [log] [blame]
Clement Escoffiereb41a152008-05-18 22:42:39 +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 Escoffier30df4ce2011-08-20 13:53:15 +00009
Clement Escoffierbfa74d02009-07-19 16:25:18 +000010 http://www.apache.org/licenses/LICENSE-2.0
Clement Escoffier30df4ce2011-08-20 13:53:15 +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 Escoffiereb41a152008-05-18 22:42:39 +000018-->
Clement Escoffier7c922852012-04-14 10:08:58 +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">
21 <parent>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000022 <groupId>org.apache.felix</groupId>
Clement Escoffier7c922852012-04-14 10:08:58 +000023 <artifactId>felix-parent</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000024 <version>2.1</version>
Clement Escoffier7c922852012-04-14 10:08:58 +000025 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
29
30 <version>1.6.1-SNAPSHOT</version>
31 <packaging>bundle</packaging>
32 <name>Apache Felix iPOJO Metadata</name>
33
34 <description>
35 iPOJO internal metadata model.
36 </description>
37
38 <build>
Clement Escoffier7c922852012-04-14 10:08:58 +000039 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Clement Escoffiered4ca022013-03-13 15:27:20 +000043 <version>2.3.7</version>
Clement Escoffier7c922852012-04-14 10:08:58 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
48 <Bundle-Name>iPOJO Metadata</Bundle-Name>
49 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
50 <Bundle-Description>iPOJO Metadata</Bundle-Description>
51 <Export-Package>org.apache.felix.ipojo.metadata</Export-Package>
Clement Escoffier7c922852012-04-14 10:08:58 +000052 </instructions>
53 <obrRepository>NONE</obrRepository>
54 </configuration>
55 </plugin>
Clement Escoffiered4ca022013-03-13 15:27:20 +000056
Clement Escoffierc5b8d122013-03-04 09:01:52 +000057 <plugin>
58 <groupId>org.apache.maven.plugins</groupId>
59 <artifactId>maven-compiler-plugin</artifactId>
60 <configuration>
61 <target>1.5</target>
62 <source>1.5</source>
63 </configuration>
64 </plugin>
Clement Escoffier7c922852012-04-14 10:08:58 +000065 </plugins>
66 </build>
Clement Escoffierbfa74d02009-07-19 16:25:18 +000067</project>