blob: c0c378d94c58dbbe9736c11ad13fb02a77080937 [file] [log] [blame]
Carsten Ziegelerc19e17c2008-01-03 09:15:17 +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-->
Karl Pauls589e2b32007-07-11 18:29:29 +000019<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
20 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
21 <parent>
22 <groupId>org.apache.felix</groupId>
23 <artifactId>felix</artifactId>
Carsten Ziegelerb7251fa2008-01-16 07:37:24 +000024 <version>1.0.2</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000025 <relativePath>../../pom/pom.xml</relativePath>
26 </parent>
27 <modelVersion>4.0.0</modelVersion>
28 <packaging>bundle</packaging>
29 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000030 <version>0.7.5-SNAPSHOT</version>
31 <name>Apache Felix iPOJO Manipulator</name>
32
33
Karl Pauls589e2b32007-07-11 18:29:29 +000034 <dependencies>
35 <dependency>
36 <groupId>asm</groupId>
37 <artifactId>asm</artifactId>
38 <version>3.0</version>
39 </dependency>
40 <dependency>
41 <groupId>asm</groupId>
42 <artifactId>asm-commons</artifactId>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000043 <version>3.0</version>
44 <exclusions>
45 <exclusion>
46 <groupId>asm</groupId>
47 <artifactId>asm-tree</artifactId>
48 </exclusion>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000049 </exclusions>
Karl Pauls589e2b32007-07-11 18:29:29 +000050 </dependency>
51 <dependency>
52 <groupId>${pom.groupId}</groupId>
53 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000054 <version>0.7.5-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000055 </dependency>
56 </dependencies>
57 <build>
58 <plugins>
59 <plugin>
60 <groupId>org.apache.felix</groupId>
61 <artifactId>maven-bundle-plugin</artifactId>
Carsten Ziegeler78bcc772008-01-22 07:41:16 +000062 <version>1.2.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000063 <extensions>true</extensions>
64 <configuration>
65 <instructions>
66 <Bundle-Name>iPOJO Manipulator</Bundle-Name>
67 <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000068 <Bundle-Description> iPOJO Manipulator </Bundle-Description>
Clement Escoffiere993bf42007-07-30 17:11:10 +000069 <Export-Package>org.apache.felix.ipojo.manipulator</Export-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000070 <Private-Package>
Clement Escoffierb28f53d2007-09-20 07:50:53 +000071 org.apache.felix.ipojo.manipulation,
Clement Escoffierf5fc5562007-08-14 13:44:32 +000072 org.apache.felix.ipojo.manipulation.annotations,
Karl Pauls589e2b32007-07-11 18:29:29 +000073 org.apache.felix.ipojo.xml.parser,
74 org.objectweb.asm,
Clement Escoffierb28f53d2007-09-20 07:50:53 +000075 org.objectweb.asm.commons
Karl Pauls589e2b32007-07-11 18:29:29 +000076 </Private-Package>
77 </instructions>
78 </configuration>
79 </plugin>
80 </plugins>
81 </build>
82</project>