Carsten Ziegeler | c19e17c | 2008-01-03 09:15:17 +0000 | [diff] [blame] | 1 | <!-- |
| 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 Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 19 | <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 Ziegeler | b7251fa | 2008-01-16 07:37:24 +0000 | [diff] [blame] | 24 | <version>1.0.2</version> |
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 25 | <relativePath>../../pom/pom.xml</relativePath>
|
| 26 | </parent>
|
| 27 | <modelVersion>4.0.0</modelVersion>
|
| 28 | <artifactId>org.apache.felix.ipojo.ant</artifactId>
|
| 29 | <packaging>bundle</packaging>
|
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 30 | <version>0.7.5-SNAPSHOT</version>
|
Clement Escoffier | b5715b1 | 2007-09-25 14:29:52 +0000 | [diff] [blame] | 31 | <name>Apache Felix iPOJO Ant Task</name>
|
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 32 | <dependencies>
|
| 33 | <dependency>
|
| 34 | <groupId>${pom.groupId}</groupId>
|
| 35 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 36 | <version>0.7.5-SNAPSHOT</version>
|
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 37 | </dependency>
|
| 38 | <dependency>
|
| 39 | <groupId>${pom.groupId}</groupId>
|
| 40 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
Clement Escoffier | 6c6ae8d | 2007-09-25 13:27:49 +0000 | [diff] [blame] | 41 | <version>0.7.5-SNAPSHOT</version>
|
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 42 | </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>
|
Stuart McCulloch | 876ca72 | 2008-02-26 17:15:42 +0000 | [diff] [blame] | 60 | <version>1.4.0</version> |
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 61 | <extensions>true</extensions>
|
| 62 | <configuration>
|
| 63 | <instructions>
|
Clement Escoffier | a237288 | 2007-10-30 10:38:44 +0000 | [diff] [blame] | 64 | <Bundle-Name>iPOJO Ant Task</Bundle-Name>
|
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 65 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
|
| 66 | <Bundle-Description> iPOJO Ant Task </Bundle-Description>
|
Clement Escoffier | 0267436 | 2007-09-20 08:07:42 +0000 | [diff] [blame] | 67 | <Private-Package>org.apache.felix.ipojo.metadata, org.apache.felix.ipojo.manipulator, org.apache.felix.ipojo.xml.parser, org.apache.felix.ipojo.manipulation*, org.objectweb.asm;-split-package:=merge-first, org.objectweb.asm.commons;-split-package:=merge-first, org.apache.xerces.parsers, org.apache.xerces.xni*, org.apache.xerces.impl*, org.apache.xerces.util.*</Private-Package>
|
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 68 | <Export-Package>org.apache.felix.ipojo.task</Export-Package>
|
| 69 | </instructions>
|
| 70 | </configuration>
|
| 71 | </plugin>
|
| 72 | </plugins>
|
| 73 | </build>
|
| 74 | </project> |