blob: a361c4bca64604e617262ce52b9a972335a72b64 [file] [log] [blame]
Clement Escoffier9236df92008-05-18 22:42:39 +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-->
Clement Escoffiercac73f62008-05-18 22:13:01 +000019<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 Escoffiere50ede52008-03-28 15:33:36 +000020 <parent>
Clement Escoffiere50ede52008-03-28 15:33:36 +000021 <groupId>org.apache.felix</groupId>
Clement Escoffiera4142112008-03-29 15:04:02 +000022 <artifactId>felix</artifactId>
23 <version>1.0.2</version>
24 <relativePath>../../pom/pom.xml</relativePath>
Clement Escoffiere50ede52008-03-28 15:33:36 +000025 </parent>
26 <modelVersion>4.0.0</modelVersion>
27 <artifactId>org.apache.felix.ipojo.ant</artifactId>
Clement Escoffiera4142112008-03-29 15:04:02 +000028 <groupId>org.apache.felix</groupId>
Clement Escoffier07f82772008-05-18 22:51:19 +000029 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000030 <packaging>bundle</packaging>
31 <name>Apache Felix iPOJO Ant Task</name>
32 <dependencies>
33 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000034 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000035 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Clement Escoffierf459e642008-05-19 01:47:07 +000036 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000037 </dependency>
38 <dependency>
Clement Escoffier65fd7342008-04-07 13:29:34 +000039 <groupId>org.apache.felix</groupId>
Clement Escoffiere50ede52008-03-28 15:33:36 +000040 <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
Clement Escoffierf459e642008-05-19 01:47:07 +000041 <version>0.9.0-SNAPSHOT</version>
Clement Escoffiere50ede52008-03-28 15:33:36 +000042 </dependency>
43 <dependency>
44 <groupId>xerces</groupId>
45 <artifactId>xercesImpl</artifactId>
46 <version>2.4.0</version>
47 </dependency>
48 <dependency>
49 <groupId>ant</groupId>
50 <artifactId>ant</artifactId>
51 <version>1.6.5</version>
52 </dependency>
53 </dependencies>
54
55 <build>
56 <plugins>
57 <plugin>
58 <groupId>org.apache.felix</groupId>
59 <artifactId>maven-bundle-plugin</artifactId>
60 <version>1.4.0</version>
61 <extensions>true</extensions>
62 <configuration>
63 <instructions>
64 <Bundle-Name>iPOJO Ant Task</Bundle-Name>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000065 <Bundle-Vendor>
66 The Apache Software Foundation
67 </Bundle-Vendor>
Clement Escoffiere50ede52008-03-28 15:33:36 +000068 <Bundle-Description>
69 iPOJO Ant Task
70 </Bundle-Description>
71 <Private-Package>
72 org.apache.felix.ipojo.metadata,
73 org.apache.felix.ipojo.manipulator,
74 org.apache.felix.ipojo.xml.parser,
75 org.apache.felix.ipojo.manipulation*,
76 org.objectweb.asm.util;-split-package:=merge-first,
77 org.objectweb.asm;-split-package:=merge-first,
78 org.objectweb.asm.commons;-split-package:=merge-first,
79 org.apache.xerces.parsers,
80 org.apache.xerces.xni*,
81 org.apache.xerces.impl*,
82 org.apache.xerces.util.*
83 </Private-Package>
84 <Export-Package>
85 org.apache.felix.ipojo.task
86 </Export-Package>
Clement Escoffier8428e9d2008-05-05 18:30:18 +000087 <Include-Resource>
88 META-INF/LICENCE=LICENSE,
89 META-INF/NOTICE=NOTICE
90 </Include-Resource>
Clement Escoffiere50ede52008-03-28 15:33:36 +000091 </instructions>
92 </configuration>
93 </plugin>
94 </plugins>
95 </build>
Clement Escoffier42ef1552007-08-14 13:45:19 +000096</project>