blob: e2b5446d0444009c31520bd4eab6ed7ccceffe1e [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +00001<!--
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 Escoffierf5fc5562007-08-14 13:44:32 +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/xsd/maven-4.0.0.xsd">
21 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000022 <artifactId>iPOJO</artifactId>
23 <groupId>org.apache.felix</groupId>
24 <version>0.7.6-SNAPSHOT</version>
25 <relativePath>../pom.xml</relativePath>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000026 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
29 <packaging>bundle</packaging>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000030 <name>Apache Felix iPOJO Annotations</name>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000031 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.maven.plugins</groupId>
35 <artifactId>maven-compiler-plugin</artifactId>
36 <configuration>
37 <source>1.5</source>
38 <target>1.5</target>
39 </configuration>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000040 </plugin>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000041 <plugin>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000042 <groupId>org.apache.felix</groupId>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000043 <artifactId>maven-bundle-plugin</artifactId>
Stuart McCulloch876ca722008-02-26 17:15:42 +000044 <version>1.4.0</version>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-Name>iPOJO Annotation</Bundle-Name>
49 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
50 <Bundle-Description> iPOJO Annotations </Bundle-Description>
51 <Export-Package>org.apache.felix.ipojo.annotations</Export-Package>
52 </instructions>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000057 <reporting>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-checkstyle-plugin</artifactId>
62 <configuration>
63 <configLocation>http://people.apache.org/~clement/styles/checkstyle_ipojo.xml</configLocation>
64 </configuration>
65 </plugin>
66 </plugins>
67 </reporting>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000068</project>