blob: b4419ed3b03cab670fdf993ce10453226bafcb45 [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +00001<!--
2 Licensed to the Apache Software Foundation (ASF) under one
3 or more contributor license agreements. See the NOTICE file
4 distributed with this work for additional information
5 regarding copyright ownership. The ASF licenses this file
6 to you under the Apache License, Version 2.0 (the
7 "License"); you may not use this file except in compliance
8 with the License. You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing,
13 software distributed under the License is distributed on an
14 "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15 KIND, either express or implied. See the License for the
16 specific language governing permissions and limitations
17 under the License.
18-->
19<project xmlns="http://maven.apache.org/POM/4.0.0"
20 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
21 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
22 <parent>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000023 <groupId>org.apache.felix</groupId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000024 <artifactId>felix</artifactId>
25 <version>1.0.2</version>
26 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000027 </parent>
28 <modelVersion>4.0.0</modelVersion>
29 <packaging>bundle</packaging>
30 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier7d116ff2008-03-29 15:04:02 +000031 <groupId>org.apache.felix</groupId>
32 <version>0.7.6-SNAPSHOT</version>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000033 <name>Apache Felix iPOJO Manipulator</name>
34
35 <dependencies>
36 <dependency>
37 <groupId>asm</groupId>
38 <artifactId>asm-all</artifactId>
39 <version>3.0</version>
40 <exclusions>
41 <exclusion>
42 <groupId>asm</groupId>
43 <artifactId>asm-tree</artifactId>
44 </exclusion>
45 </exclusions>
46 </dependency>
47 <dependency>
Clement Escoffier4a12e332008-04-07 13:29:34 +000048 <groupId>org.apache.felix</groupId>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000049 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
50 <version>0.7.6-SNAPSHOT</version>
51 </dependency>
52 </dependencies>
53 <build>
54 <plugins>
55 <plugin>
56 <groupId>org.apache.felix</groupId>
57 <artifactId>maven-bundle-plugin</artifactId>
58 <version>1.4.0</version>
59 <extensions>true</extensions>
60 <configuration>
61 <instructions>
62 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
Carsten Ziegelercf6e51b2008-04-17 06:33:59 +000063 <Bundle-Vendor>The Apache Software Foundation</Bundle-Vendor>
Clement Escoffierce0e1e52008-03-28 15:33:36 +000064 <Bundle-Description>
65 iPOJO Manipulator
66 </Bundle-Description>
67 <Export-Package>
68 org.apache.felix.ipojo.manipulator
69 </Export-Package>
70 <Private-Package>
71 org.apache.felix.ipojo.manipulation,
72 org.apache.felix.ipojo.manipulation.annotations,
73 org.apache.felix.ipojo.xml.parser,
74 org.objectweb.asm, org.objectweb.asm.commons
75 </Private-Package>
76 </instructions>
77 </configuration>
78 </plugin>
79 </plugins>
80 </build>
81</project>