Clement Escoffier | 9936394 | 2008-05-18 22:57:48 +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 | 04e85d8 | 2008-05-18 22:53:52 +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">
|
Clement Escoffier | 9d7a005 | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 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>
|
Clement Escoffier | 9f64455 | 2008-05-18 22:59:09 +0000 | [diff] [blame^] | 29 | <version>0.9.0-SNAPSHOT</version>
|
Clement Escoffier | 9d7a005 | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 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.0</version>
|
| 46 | <extensions>true</extensions>
|
| 47 | <configuration>
|
| 48 | <instructions>
|
Clement Escoffier | 9936394 | 2008-05-18 22:57:48 +0000 | [diff] [blame] | 49 | <Bundle-Name>iPOJO Annotations</Bundle-Name>
|
Clement Escoffier | 9d7a005 | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 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 | </Export-Package>
|
| 59 | <Include-Resource>
|
| 60 | META-INF/LICENCE=LICENSE,
|
| 61 | META-INF/NOTICE=NOTICE
|
| 62 | </Include-Resource>
|
| 63 | </instructions>
|
| 64 | </configuration>
|
| 65 | </plugin>
|
| 66 | </plugins>
|
| 67 | </build>
|
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 68 | </project> |