Clement Escoffier | 0b4c754 | 2008-10-14 09:20:39 +0000 | [diff] [blame^] | 1 | <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"> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
| 5 | <version>1.0.2</version> |
| 6 | <relativePath>../../pom/pom.xml</relativePath> |
| 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <artifactId>org.apache.felix.ipojo.ant</artifactId> |
| 10 | <groupId>org.apache.felix</groupId> |
| 11 | <version>1.0.0</version> |
| 12 | <packaging>bundle</packaging> |
| 13 | <name>Apache Felix iPOJO Ant Task</name> |
| 14 | <dependencies> |
| 15 | <dependency> |
| 16 | <groupId>org.apache.felix</groupId> |
| 17 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
| 18 | <version>1.0.0</version> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>org.apache.felix</groupId> |
| 22 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 23 | <version>1.0.0</version> |
| 24 | </dependency> |
| 25 | <dependency> |
| 26 | <groupId>xerces</groupId> |
| 27 | <artifactId>xercesImpl</artifactId> |
| 28 | <version>2.4.0</version> |
| 29 | </dependency> |
| 30 | <dependency> |
| 31 | <groupId>ant</groupId> |
| 32 | <artifactId>ant</artifactId> |
| 33 | <version>1.6.5</version> |
| 34 | </dependency> |
| 35 | </dependencies> |
| 36 | |
| 37 | <build> |
| 38 | <plugins> |
| 39 | <plugin> |
| 40 | <groupId>org.apache.felix</groupId> |
| 41 | <artifactId>maven-bundle-plugin</artifactId> |
| 42 | <version>1.4.2</version> |
| 43 | <extensions>true</extensions> |
| 44 | <configuration> |
| 45 | <instructions> |
| 46 | <Bundle-Name>iPOJO Ant Task</Bundle-Name> |
| 47 | <Bundle-Vendor> |
| 48 | The Apache Software Foundation |
| 49 | </Bundle-Vendor> |
| 50 | <Bundle-Description> |
| 51 | iPOJO Ant Task |
| 52 | </Bundle-Description> |
| 53 | <Private-Package> |
| 54 | org.apache.felix.ipojo.metadata, |
| 55 | org.apache.felix.ipojo.manipulator, |
| 56 | org.apache.felix.ipojo.xml.parser, |
| 57 | org.apache.felix.ipojo.manipulation*, |
| 58 | org.objectweb.asm.util;-split-package:=merge-first, |
| 59 | org.objectweb.asm;-split-package:=merge-first, |
| 60 | org.objectweb.asm.commons;-split-package:=merge-first, |
| 61 | org.apache.xerces.parsers, |
| 62 | org.apache.xerces.xni*, |
| 63 | org.apache.xerces.impl*, |
| 64 | org.apache.xerces.util.*, |
| 65 | org.apache.xerces.dom.*, |
| 66 | org.apache.xerces.dom3.* |
| 67 | </Private-Package> |
| 68 | <Export-Package> |
| 69 | org.apache.felix.ipojo.task |
| 70 | </Export-Package> |
| 71 | <Include-Resource> |
| 72 | META-INF/LICENCE=LICENSE, |
| 73 | META-INF/NOTICE=NOTICE, |
| 74 | META-INF/LICENSE.asm=LICENSE.asm |
| 75 | </Include-Resource> |
| 76 | </instructions> |
| 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
| 81 | |
| 82 | <scm> |
| 83 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</connection> |
| 84 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</developerConnection> |
| 85 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.ant-1.0.0</url> |
| 86 | </scm> |
Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 87 | </project> |