blob: 09b669e80012e8d66ca0bb2cc24cd2cf4eaf8eaa [file] [log] [blame]
Clement Escoffier04e85d82008-05-18 22:53:52 +00001<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 Escoffier9d7a0052008-05-05 18:30:18 +00002 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>1.0.2</version>
6 <relativePath>../../pom/pom.xml</relativePath>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
10 <groupId>org.apache.felix</groupId>
Clement Escoffier04e85d82008-05-18 22:53:52 +000011 <version>0.8.0</version>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000012 <packaging>bundle</packaging>
13 <name>Apache Felix iPOJO Annotations</name>
14 <build>
15 <plugins>
16 <plugin>
17 <groupId>org.apache.maven.plugins</groupId>
18 <artifactId>maven-compiler-plugin</artifactId>
19 <configuration>
20 <source>1.5</source>
21 <target>1.5</target>
22 </configuration>
23 </plugin>
24 <plugin>
25 <groupId>org.apache.felix</groupId>
26 <artifactId>maven-bundle-plugin</artifactId>
27 <version>1.4.0</version>
28 <extensions>true</extensions>
29 <configuration>
30 <instructions>
31 <Bundle-Name>iPOJO Annotation</Bundle-Name>
32 <Bundle-Vendor>
33 The Apache Software Foundation
34 </Bundle-Vendor>
35 <Bundle-Description>
36 iPOJO Annotations
37 </Bundle-Description>
38 <Export-Package>
39 org.apache.felix.ipojo.annotations
40 </Export-Package>
41 <Include-Resource>
42 META-INF/LICENCE=LICENSE,
43 META-INF/NOTICE=NOTICE
44 </Include-Resource>
45 </instructions>
46 </configuration>
47 </plugin>
48 </plugins>
49 </build>
50 <reporting>
51 <plugins>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-checkstyle-plugin</artifactId>
55 <configuration>
56 <configLocation>
57 http://people.apache.org/~clement/styles/checkstyle_ipojo.xml
58 </configLocation>
59 </configuration>
60 </plugin>
61 </plugins>
62 </reporting>
Clement Escoffier04e85d82008-05-18 22:53:52 +000063
64 <scm>
65 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-0.8.0</connection>
66 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-0.8.0</developerConnection>
67 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-0.8.0</url>
68 </scm>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000069</project>