Clement Escoffier | 5f59330 | 2008-10-14 11:13:50 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | a32364e | 2008-10-14 11:09:08 +0000 | [diff] [blame] | 19 | <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/xsd/maven-4.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 | <artifactId>org.apache.felix.ipojo.annotations</artifactId> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <version>1.0.0</version> |
| 30 | <packaging>bundle</packaging> |
| 31 | <name>Apache Felix iPOJO Annotations</name> |
| 32 | <build> |
| 33 | <plugins> |
| 34 | <plugin> |
| 35 | <groupId>org.apache.maven.plugins</groupId> |
| 36 | <artifactId>maven-compiler-plugin</artifactId> |
| 37 | <configuration> |
| 38 | <source>1.5</source> |
| 39 | <target>1.5</target> |
| 40 | </configuration> |
| 41 | </plugin> |
| 42 | <plugin> |
| 43 | <groupId>org.apache.felix</groupId> |
| 44 | <artifactId>maven-bundle-plugin</artifactId> |
| 45 | <version>1.4.2</version> |
| 46 | <extensions>true</extensions> |
| 47 | <configuration> |
| 48 | <instructions> |
| 49 | <Bundle-Name>iPOJO Annotations</Bundle-Name> |
| 50 | <Bundle-Vendor> |
| 51 | The Apache Software Foundation |
| 52 | </Bundle-Vendor> |
| 53 | <Bundle-Description> |
| 54 | iPOJO Annotations |
| 55 | </Bundle-Description> |
| 56 | <Export-Package> |
| 57 | org.apache.felix.ipojo.annotations, |
| 58 | org.apache.felix.ipojo.handler.temporal |
| 59 | </Export-Package> |
| 60 | <Include-Resource> |
| 61 | META-INF/LICENCE=LICENSE, |
| 62 | META-INF/NOTICE=NOTICE |
| 63 | </Include-Resource> |
| 64 | </instructions> |
| 65 | </configuration> |
| 66 | </plugin> |
| 67 | </plugins> |
| 68 | </build> |
| 69 | |
| 70 | <scm> |
| 71 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</connection> |
| 72 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</developerConnection> |
| 73 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</url> |
| 74 | </scm> |
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 75 | </project> |