blob: 05152933198b4f72b14714d0c67d8897b9f4b7da [file] [log] [blame]
Clement Escoffiera7e73652008-10-14 08:40:07 +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 <packaging>bundle</packaging>
10 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
11 <groupId>org.apache.felix</groupId>
12 <version>1.0.0</version>
13 <name>Apache Felix iPOJO Manipulator</name>
14
15 <dependencies>
16 <dependency>
17 <groupId>asm</groupId>
18 <artifactId>asm-all</artifactId>
19 <version>3.0</version>
20 <exclusions>
21 <exclusion>
22 <groupId>asm</groupId>
23 <artifactId>asm-tree</artifactId>
24 </exclusion>
25 </exclusions>
26 </dependency>
27 <dependency>
28 <groupId>org.apache.felix</groupId>
29 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
30 <version>1.0.0</version>
31 </dependency>
32 </dependencies>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
38 <version>1.4.2</version>
39 <extensions>true</extensions>
40 <configuration>
41 <instructions>
42 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
43 <Bundle-Vendor>
44 The Apache Software Foundation
45 </Bundle-Vendor>
46 <Bundle-Description>
47 iPOJO Manipulator
48 </Bundle-Description>
49 <Export-Package>
50 org.apache.felix.ipojo.manipulator
51 </Export-Package>
52 <Private-Package>
53 org.apache.felix.ipojo.manipulation,
54 org.apache.felix.ipojo.manipulation.annotations,
55 org.apache.felix.ipojo.xml.parser,
56 org.objectweb.asm, org.objectweb.asm.commons
57 </Private-Package>
58 <Include-Resource>
59 META-INF/LICENCE=LICENSE,
60 META-INF/LICENCE.asm=LICENSE.asm,
61 META-INF/NOTICE=NOTICE
62 </Include-Resource>
63 </instructions>
64 </configuration>
65 </plugin>
66 </plugins>
67 </build>
68
69 <scm>
70 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-1.0.0</connection>
71 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-1.0.0</developerConnection>
72 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-1.0.0</url>
73 </scm>
Clement Escoffier156112b2008-05-18 22:03:26 +000074</project>