Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +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 | f5fc556 | 2007-08-14 13:44:32 +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/xsd/maven-4.0.0.xsd">
|
| 21 | <parent>
|
| 22 | <groupId>org.apache.felix</groupId>
|
| 23 | <artifactId>felix</artifactId>
|
Carsten Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 24 | <version>1.0.2</version> |
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath>
|
| 26 | </parent>
|
| 27 | <modelVersion>4.0.0</modelVersion>
|
| 28 | <artifactId>org.apache.felix.ipojo.annotations</artifactId>
|
| 29 | <packaging>bundle</packaging>
|
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 30 | <version>0.7.5-SNAPSHOT</version>
|
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 31 | <name>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>
|
Carsten Ziegeler | e5cfd9f | 2008-01-22 07:35:57 +0000 | [diff] [blame] | 45 | <version>1.2.0</version> |
Clement Escoffier | f5fc556 | 2007-08-14 13:44:32 +0000 | [diff] [blame] | 46 | <extensions>true</extensions>
|
| 47 | <configuration>
|
| 48 | <instructions>
|
| 49 | <Bundle-Name>iPOJO Annotation</Bundle-Name>
|
| 50 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
|
| 51 | <Bundle-Description> iPOJO Annotations </Bundle-Description>
|
| 52 | <Export-Package>org.apache.felix.ipojo.annotations</Export-Package>
|
| 53 | </instructions>
|
| 54 | </configuration>
|
| 55 | </plugin>
|
| 56 | </plugins>
|
| 57 | </build>
|
| 58 | </project> |