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