Clement Escoffier | eb41a15 | 2008-05-18 22:42:39 +0000 | [diff] [blame] | 1 | <!-- |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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 |
Clement Escoffier | 30df4ce | 2011-08-20 13:53:15 +0000 | [diff] [blame] | 9 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 10 | http://www.apache.org/licenses/LICENSE-2.0 |
Clement Escoffier | 30df4ce | 2011-08-20 13:53:15 +0000 | [diff] [blame] | 11 | |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 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. |
Clement Escoffier | eb41a15 | 2008-05-18 22:42:39 +0000 | [diff] [blame] | 18 | --> |
Clement Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 19 | <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 Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 22 | <groupId>org.apache.felix</groupId> |
Clement Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 23 | <artifactId>felix-parent</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 24 | <version>2.1</version> |
Clement Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 25 | <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 Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 39 | <plugins> |
| 40 | <plugin> |
| 41 | <groupId>org.apache.felix</groupId> |
| 42 | <artifactId>maven-bundle-plugin</artifactId> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 43 | <version>2.3.7</version> |
Clement Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 44 | <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 Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 52 | </instructions> |
| 53 | <obrRepository>NONE</obrRepository> |
| 54 | </configuration> |
| 55 | </plugin> |
Clement Escoffier | ed4ca02 | 2013-03-13 15:27:20 +0000 | [diff] [blame] | 56 | |
Clement Escoffier | c5b8d12 | 2013-03-04 09:01:52 +0000 | [diff] [blame] | 57 | <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 Escoffier | 7c92285 | 2012-04-14 10:08:58 +0000 | [diff] [blame] | 65 | </plugins> |
| 66 | </build> |
Clement Escoffier | bfa74d0 | 2009-07-19 16:25:18 +0000 | [diff] [blame] | 67 | </project> |