Clement Escoffier | 42ef155 | 2007-08-14 13:45:19 +0000 | [diff] [blame] | 1 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
| 2 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
| 3 | <parent>
|
| 4 | <groupId>org.apache.felix</groupId>
|
| 5 | <artifactId>felix</artifactId>
|
| 6 | <version>1.1.0-SNAPSHOT</version>
|
| 7 | <relativePath>../../pom/pom.xml</relativePath>
|
| 8 | </parent>
|
| 9 | <modelVersion>4.0.0</modelVersion>
|
| 10 | <artifactId>org.apache.felix.ipojo.ant</artifactId>
|
| 11 | <packaging>bundle</packaging>
|
| 12 | <version>0.7.3-SNAPSHOT</version>
|
| 13 | <name>iPOJO Ant Task</name>
|
| 14 | <dependencies>
|
| 15 | <dependency>
|
| 16 | <groupId>${pom.groupId}</groupId>
|
| 17 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 18 | <version>0.7.3-SNAPSHOT</version>
|
| 19 | </dependency>
|
| 20 | <dependency>
|
| 21 | <groupId>${pom.groupId}</groupId>
|
| 22 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
| 23 | <version>0.7.3-SNAPSHOT</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.1.0-SNAPSHOT</version>
|
| 43 | <extensions>true</extensions>
|
| 44 | <configuration>
|
| 45 | <instructions>
|
| 46 | <Bundle-Name>iPOJO Ant Task</Bundle-Name>
|
| 47 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
|
| 48 | <Bundle-Description> iPOJO Ant Task </Bundle-Description>
|
Clement Escoffier | 0267436 | 2007-09-20 08:07:42 +0000 | [diff] [blame^] | 49 | <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] | 50 | <Export-Package>org.apache.felix.ipojo.task</Export-Package>
|
| 51 | </instructions>
|
| 52 | </configuration>
|
| 53 | </plugin>
|
| 54 | </plugins>
|
| 55 | </build>
|
| 56 | </project> |