blob: 01aabb0476f6db5676e1172b1f421e7c0a412be9 [file] [log] [blame]
Karl Pauls589e2b32007-07-11 18:29:29 +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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00006 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00007 <relativePath>../../pom/pom.xml</relativePath>
8 </parent>
9 <modelVersion>4.0.0</modelVersion>
10 <packaging>bundle</packaging>
11 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000012 <version>0.7.3-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000013 <name>Apache Felix iPOJO Manipulator</name>
14 <dependencies>
15 <dependency>
16 <groupId>asm</groupId>
17 <artifactId>asm</artifactId>
18 <version>3.0</version>
19 </dependency>
20 <dependency>
21 <groupId>asm</groupId>
22 <artifactId>asm-commons</artifactId>
23 <version>3.0</version>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000024 <exclusions>
25 <exclusion>
26 <groupId>asm</groupId>
27 <artifactId>asm-tree</artifactId>
28 </exclusion>
29 </exclusions>
Karl Pauls589e2b32007-07-11 18:29:29 +000030 </dependency>
31 <dependency>
32 <groupId>${pom.groupId}</groupId>
33 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000034 <version>0.7.3-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000035 </dependency>
36 </dependencies>
37 <build>
38 <plugins>
39 <plugin>
40 <groupId>org.apache.felix</groupId>
41 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000042 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000043 <extensions>true</extensions>
44 <configuration>
45 <instructions>
46 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
47 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000048 <Bundle-Description> iPOJO Manipulator </Bundle-Description>
Clement Escoffiere993bf42007-07-30 17:11:10 +000049 <Export-Package>org.apache.felix.ipojo.manipulator</Export-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000050 <Private-Package>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000051 org.apache.felix.ipojo.manipulation,
Clement Escoffierf5fc5562007-08-14 13:44:32 +000052 org.apache.felix.ipojo.manipulation.annotations,
Karl Pauls589e2b32007-07-11 18:29:29 +000053 org.apache.felix.ipojo.xml.parser,
54 org.objectweb.asm,
Clement Escoffierb28f53d2007-09-20 07:50:53 +000055 org.objectweb.asm.commons
Karl Pauls589e2b32007-07-11 18:29:29 +000056 </Private-Package>
57 </instructions>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>