blob: 5fe200a24a2315a988592e14273e8608fc6adc7c [file] [log] [blame]
Clement Escoffier156112b2008-05-18 22:03:26 +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">
Clement Escoffierce0e1e52008-03-28 15:33:36 +00002 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +00003 <groupId>org.apache.felix</groupId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +00004 <artifactId>felix</artifactId>
5 <version>1.0.2</version>
6 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-03-28 15:33:36 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>bundle</packaging>
10 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000011 <groupId>org.apache.felix</groupId>
Clement Escoffier156112b2008-05-18 22:03:26 +000012 <version>0.8.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000013 <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>
Clement Escoffier4a12e332008-04-07 13:29:34 +000028 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000029 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier156112b2008-05-18 22:03:26 +000030 <version>0.8.0</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000031 </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.0</version>
39 <extensions>true</extensions>
40 <configuration>
41 <instructions>
42 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000043 <Bundle-Vendor>
44 The Apache Software Foundation
45 </Bundle-Vendor>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000046 <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>
Clement Escoffier9d7a0052008-05-05 18:30:18 +000058 <Include-Resource>
59 META-INF/LICENCE=LICENSE,
60 META-INF/NOTICE=NOTICE
61 </Include-Resource>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000062 </instructions>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
Clement Escoffier156112b2008-05-18 22:03:26 +000067
68 <scm>
69 <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</connection>
70 <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</developerConnection>
71 <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</url>
72 </scm>
73</project>