blob: 94867bb61c04f4368a4432ce84db55f4d9627586 [file] [log] [blame]
Clement Escoffierf5fc5562007-08-14 13:44:32 +00001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>1.1.0-SNAPSHOT</version>
7 <relativePath>../../pom/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>org.apache.felix.ipojo.annotations</artifactId>
11 <packaging>bundle</packaging>
12 <version>0.7.3-SNAPSHOT</version>
13 <name>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.1.0-SNAPSHOT</version>
28 <extensions>true</extensions>
29 <configuration>
30 <instructions>
31 <Bundle-Name>iPOJO Annotation</Bundle-Name>
32 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
33 <Bundle-Description> iPOJO Annotations </Bundle-Description>
34 <Export-Package>org.apache.felix.ipojo.annotations</Export-Package>
35 </instructions>
36 </configuration>
37 </plugin>
38 </plugins>
39 </build>
40</project>