Clement Escoffier | 05a71aa | 2008-10-14 09:24:58 +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 | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame] | 19 | <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"> |
| 20 | <parent> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>felix</artifactId> |
| 23 | <version>1.0.2</version> |
| 24 | <relativePath>../../pom/pom.xml</relativePath> |
| 25 | </parent> |
| 26 | <modelVersion>4.0.0</modelVersion> |
| 27 | <artifactId>org.apache.felix.ipojo.ant</artifactId> |
| 28 | <groupId>org.apache.felix</groupId> |
| 29 | <version>1.0.0</version> |
| 30 | <packaging>bundle</packaging> |
| 31 | <name>Apache Felix iPOJO Ant Task</name> |
| 32 | <dependencies> |
| 33 | <dependency> |
| 34 | <groupId>org.apache.felix</groupId> |
| 35 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 36 | <version>1.0.0</version> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apache.felix</groupId> |
| 40 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 41 | <version>1.0.0</version> |
| 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> |
| 60 | <version>1.4.2</version> |
| 61 | <extensions>true</extensions> |
| 62 | <configuration> |
| 63 | <instructions> |
| 64 | <Bundle-Name>iPOJO Ant Task</Bundle-Name> |
| 65 | <Bundle-Vendor> |
| 66 | The Apache Software Foundation |
| 67 | </Bundle-Vendor> |
| 68 | <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 | org.apache.xerces.dom.*, |
| 84 | org.apache.xerces.dom3.* |
| 85 | </Private-Package> |
| 86 | <Export-Package> |
| 87 | org.apache.felix.ipojo.task |
| 88 | </Export-Package> |
| 89 | <Include-Resource> |
| 90 | META-INF/LICENCE=LICENSE, |
| 91 | META-INF/NOTICE=NOTICE, |
| 92 | META-INF/LICENSE.asm=LICENSE.asm |
| 93 | </Include-Resource> |
| 94 | </instructions> |
| 95 | </configuration> |
| 96 | </plugin> |
| 97 | </plugins> |
| 98 | </build> |
| 99 | |
| 100 | <scm> |
| 101 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</connection> |
| 102 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</developerConnection> |
| 103 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</url> |
| 104 | </scm> |
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 105 | </project> |