blob: 7aa38bf73d31ab7cde6b0e2e3b97804203a91d40 [file] [log] [blame]
Clement Escoffier042a0ec2007-06-24 15:11:33 +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">
Clement Escoffier18a6a802007-06-26 10:49:53 +00003 <parent>
4 <groupId>org.apache.felix</groupId>
5 <artifactId>felix</artifactId>
6 <version>0.9.0-incubator-SNAPSHOT</version>
7 </parent>
Clement Escoffier042a0ec2007-06-24 15:11:33 +00008 <modelVersion>4.0.0</modelVersion>
Clement Escoffier18a6a802007-06-26 10:49:53 +00009 <packaging>bundle</packaging>
Clement Escoffier042a0ec2007-06-24 15:11:33 +000010 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier042a0ec2007-06-24 15:11:33 +000011 <version>0.7.3-incubator-SNAPSHOT</version>
12 <name>Apache Felix iPOJO Manipulator</name>
13 <dependencies>
14 <dependency>
15 <groupId>asm</groupId>
16 <artifactId>asm</artifactId>
17 <version>3.0</version>
18 </dependency>
19 <dependency>
Clement Escoffier18a6a802007-06-26 10:49:53 +000020 <groupId>asm</groupId>
21 <artifactId>asm-commons</artifactId>
22 <version>3.0</version>
23 </dependency>
24 <!-- to remove -->
25 <dependency>
26 <groupId>asm</groupId>
27 <artifactId>asm-tree</artifactId>
28 <version>3.0</version>
29 </dependency>
30 <dependency>
Clement Escoffier042a0ec2007-06-24 15:11:33 +000031 <groupId>${pom.groupId}</groupId>
32 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
33 <version>0.7.3-incubator-SNAPSHOT</version>
34 </dependency>
35 </dependencies>
Clement Escoffier18a6a802007-06-26 10:49:53 +000036 <build>
37 <plugins>
38 <plugin>
39 <groupId>org.apache.felix</groupId>
40 <artifactId>maven-bundle-plugin</artifactId>
41 <extensions>true</extensions>
42 <configuration>
43 <instructions>
44 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
45 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
46 <Bundle-Description> iPOJO Manipulator </Bundle-Description>
47 <Private-Package>
48 org.apache.felix.ipojo.manipulation,
49 org.apache.felix.ipojo.manipulator,
50 org.apache.felix.ipojo.xml.parser,
51 org.objectweb.asm,
52 org.objectweb.asm.commons,
53 org.objectweb.asm.tree <!-- to remove -->
54 </Private-Package>
55 </instructions>
56 </configuration>
57 </plugin>
58 </plugins>
59 </build>
Clement Escoffier042a0ec2007-06-24 15:11:33 +000060</project>