blob: 84362cac9002a74543030e88ff1a2765ebcfd86f [file] [log] [blame]
Clement Escoffiere50ede52008-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 Escoffiere50ede52008-03-28 15:33:36 +000023 <groupId>org.apache.felix</groupId>
Clement Escoffiera4142112008-03-29 15:04:02 +000024 <artifactId>felix</artifactId>
25 <version>1.0.2</version>
26 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffiere50ede52008-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 Escoffiera4142112008-03-29 15:04:02 +000031 <groupId>org.apache.felix</groupId>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000032 <version>0.8.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-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 Escoffier65fd7342008-04-07 13:29:34 +000048 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000049 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000050 <version>0.8.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000051 </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>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000063 <Bundle-Vendor>
64 The Apache Software Foundation
65 </Bundle-Vendor>
Clement Escoffiere50ede52008-03-28 15:33:36 +000066 <Bundle-Description>
67 iPOJO Manipulator
68 </Bundle-Description>
69 <Export-Package>
70 org.apache.felix.ipojo.manipulator
71 </Export-Package>
72 <Private-Package>
73 org.apache.felix.ipojo.manipulation,
74 org.apache.felix.ipojo.manipulation.annotations,
75 org.apache.felix.ipojo.xml.parser,
76 org.objectweb.asm, org.objectweb.asm.commons
77 </Private-Package>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000078 <Include-Resource>
79 META-INF/LICENCE=LICENSE,
80 META-INF/NOTICE=NOTICE
81 </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000082 </instructions>
83 </configuration>
84 </plugin>
85 </plugins>
86 </build>
87</project>