blob: 672542f17759d4e6c7cd5e05d9cace0a426bfad7 [file] [log] [blame]
Clement Escoffiera32364e2008-10-14 11:09:08 +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">
2 <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>
11 <version>1.0.0</version>
12 <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.2</version>
28 <extensions>true</extensions>
29 <configuration>
30 <instructions>
31 <Bundle-Name>iPOJO Annotations</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 org.apache.felix.ipojo.handler.temporal
41 </Export-Package>
42 <Include-Resource>
43 META-INF/LICENCE=LICENSE,
44 META-INF/NOTICE=NOTICE
45 </Include-Resource>
46 </instructions>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51
52 <scm>
53 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</connection>
54 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</developerConnection>
55 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.annotations-1.0.0</url>
56 </scm>
Clement Escoffierf5fc5562007-08-14 13:44:32 +000057</project>