blob: 8034a58680566556f828071bd12b01c5f17dc0c1 [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>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000012 <version>0.7.5-SNAPSHOT</version>
13 <name>Apache Felix iPOJO Manipulator</name>
14
15
Karl Pauls589e2b32007-07-11 18:29:29 +000016 <dependencies>
17 <dependency>
18 <groupId>asm</groupId>
19 <artifactId>asm</artifactId>
20 <version>3.0</version>
21 </dependency>
22 <dependency>
23 <groupId>asm</groupId>
24 <artifactId>asm-commons</artifactId>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000025 <version>3.0</version>
26 <exclusions>
27 <exclusion>
28 <groupId>asm</groupId>
29 <artifactId>asm-tree</artifactId>
30 </exclusion>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000031 </exclusions>
Karl Pauls589e2b32007-07-11 18:29:29 +000032 </dependency>
33 <dependency>
34 <groupId>${pom.groupId}</groupId>
35 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000036 <version>0.7.5-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000037 </dependency>
38 </dependencies>
39 <build>
40 <plugins>
41 <plugin>
42 <groupId>org.apache.felix</groupId>
43 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000044 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000045 <extensions>true</extensions>
46 <configuration>
47 <instructions>
48 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
49 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000050 <Bundle-Description> iPOJO Manipulator </Bundle-Description>
Clement Escoffiere993bf42007-07-30 17:11:10 +000051 <Export-Package>org.apache.felix.ipojo.manipulator</Export-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000052 <Private-Package>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000053 org.apache.felix.ipojo.manipulation,
Clement Escoffierf5fc5562007-08-14 13:44:32 +000054 org.apache.felix.ipojo.manipulation.annotations,
Karl Pauls589e2b32007-07-11 18:29:29 +000055 org.apache.felix.ipojo.xml.parser,
56 org.objectweb.asm,
Clement Escoffierb28f53d2007-09-20 07:50:53 +000057 org.objectweb.asm.commons
Karl Pauls589e2b32007-07-11 18:29:29 +000058 </Private-Package>
59 </instructions>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>