Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +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">
|
Clement Escoffier | 18a6a80 | 2007-06-26 10:49:53 +0000 | [diff] [blame] | 3 | <parent>
|
| 4 | <groupId>org.apache.felix</groupId>
|
| 5 | <artifactId>felix</artifactId>
|
| 6 | <version>0.9.0-incubator-SNAPSHOT</version>
|
| 7 | </parent>
|
Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +0000 | [diff] [blame] | 8 | <modelVersion>4.0.0</modelVersion>
|
Clement Escoffier | 18a6a80 | 2007-06-26 10:49:53 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging>
|
Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +0000 | [diff] [blame] | 10 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +0000 | [diff] [blame] | 11 | <version>0.7.3-incubator-SNAPSHOT</version>
|
| 12 | <name>Apache Felix iPOJO Manipulator</name>
|
| 13 | <dependencies>
|
| 14 | <dependency>
|
| 15 | <groupId>asm</groupId>
|
| 16 | <artifactId>asm</artifactId>
|
| 17 | <version>3.0</version>
|
| 18 | </dependency>
|
| 19 | <dependency>
|
Clement Escoffier | 18a6a80 | 2007-06-26 10:49:53 +0000 | [diff] [blame] | 20 | <groupId>asm</groupId>
|
| 21 | <artifactId>asm-commons</artifactId>
|
| 22 | <version>3.0</version>
|
| 23 | </dependency>
|
| 24 | <!-- to remove -->
|
| 25 | <dependency>
|
| 26 | <groupId>asm</groupId>
|
| 27 | <artifactId>asm-tree</artifactId>
|
| 28 | <version>3.0</version>
|
| 29 | </dependency>
|
| 30 | <dependency>
|
Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +0000 | [diff] [blame] | 31 | <groupId>${pom.groupId}</groupId>
|
| 32 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
| 33 | <version>0.7.3-incubator-SNAPSHOT</version>
|
| 34 | </dependency>
|
| 35 | </dependencies>
|
Clement Escoffier | 18a6a80 | 2007-06-26 10:49:53 +0000 | [diff] [blame] | 36 | <build>
|
| 37 | <plugins>
|
| 38 | <plugin>
|
| 39 | <groupId>org.apache.felix</groupId>
|
| 40 | <artifactId>maven-bundle-plugin</artifactId>
|
| 41 | <extensions>true</extensions>
|
| 42 | <configuration>
|
| 43 | <instructions>
|
| 44 | <Bundle-Name>iPOJO Manipulator</Bundle-Name>
|
| 45 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor>
|
| 46 | <Bundle-Description> iPOJO Manipulator </Bundle-Description>
|
| 47 | <Private-Package>
|
| 48 | org.apache.felix.ipojo.manipulation,
|
| 49 | org.apache.felix.ipojo.manipulator,
|
| 50 | org.apache.felix.ipojo.xml.parser,
|
| 51 | org.objectweb.asm,
|
| 52 | org.objectweb.asm.commons,
|
| 53 | org.objectweb.asm.tree <!-- to remove -->
|
| 54 | </Private-Package>
|
| 55 | </instructions>
|
| 56 | </configuration>
|
| 57 | </plugin>
|
| 58 | </plugins>
|
| 59 | </build>
|
Clement Escoffier | 042a0ec | 2007-06-24 15:11:33 +0000 | [diff] [blame] | 60 | </project> |