Clement Escoffier | 5fc8a5e | 2008-05-18 22:03:26 +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">
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 2 | <parent>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 3 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | a414211 | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 4 | <artifactId>felix</artifactId>
|
| 5 | <version>1.0.2</version>
|
| 6 | <relativePath>../../pom/pom.xml</relativePath>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 7 | </parent>
|
| 8 | <modelVersion>4.0.0</modelVersion>
|
| 9 | <packaging>bundle</packaging>
|
| 10 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId>
|
Clement Escoffier | a414211 | 2008-03-29 15:04:02 +0000 | [diff] [blame] | 11 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | 5fc8a5e | 2008-05-18 22:03:26 +0000 | [diff] [blame^] | 12 | <version>0.8.0</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 13 | <name>Apache Felix iPOJO Manipulator</name>
|
| 14 |
|
| 15 | <dependencies>
|
| 16 | <dependency>
|
| 17 | <groupId>asm</groupId>
|
| 18 | <artifactId>asm-all</artifactId>
|
| 19 | <version>3.0</version>
|
| 20 | <exclusions>
|
| 21 | <exclusion>
|
| 22 | <groupId>asm</groupId>
|
| 23 | <artifactId>asm-tree</artifactId>
|
| 24 | </exclusion>
|
| 25 | </exclusions>
|
| 26 | </dependency>
|
| 27 | <dependency>
|
Clement Escoffier | 65fd734 | 2008-04-07 13:29:34 +0000 | [diff] [blame] | 28 | <groupId>org.apache.felix</groupId>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 29 | <artifactId>org.apache.felix.ipojo.metadata</artifactId>
|
Clement Escoffier | 5fc8a5e | 2008-05-18 22:03:26 +0000 | [diff] [blame^] | 30 | <version>0.8.0</version>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 31 | </dependency>
|
| 32 | </dependencies>
|
| 33 | <build>
|
| 34 | <plugins>
|
| 35 | <plugin>
|
| 36 | <groupId>org.apache.felix</groupId>
|
| 37 | <artifactId>maven-bundle-plugin</artifactId>
|
| 38 | <version>1.4.0</version>
|
| 39 | <extensions>true</extensions>
|
| 40 | <configuration>
|
| 41 | <instructions>
|
| 42 | <Bundle-Name>iPOJO Manipulator</Bundle-Name>
|
Clement Escoffier | 8428e9d | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 43 | <Bundle-Vendor>
|
| 44 | The Apache Software Foundation
|
| 45 | </Bundle-Vendor>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 46 | <Bundle-Description>
|
| 47 | iPOJO Manipulator
|
| 48 | </Bundle-Description>
|
| 49 | <Export-Package>
|
| 50 | org.apache.felix.ipojo.manipulator
|
| 51 | </Export-Package>
|
| 52 | <Private-Package>
|
| 53 | org.apache.felix.ipojo.manipulation,
|
| 54 | org.apache.felix.ipojo.manipulation.annotations,
|
| 55 | org.apache.felix.ipojo.xml.parser,
|
| 56 | org.objectweb.asm, org.objectweb.asm.commons
|
| 57 | </Private-Package>
|
Clement Escoffier | 8428e9d | 2008-05-05 18:30:18 +0000 | [diff] [blame] | 58 | <Include-Resource>
|
| 59 | META-INF/LICENCE=LICENSE,
|
| 60 | META-INF/NOTICE=NOTICE
|
| 61 | </Include-Resource>
|
Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame] | 62 | </instructions>
|
| 63 | </configuration>
|
| 64 | </plugin>
|
| 65 | </plugins>
|
| 66 | </build>
|
Clement Escoffier | 5fc8a5e | 2008-05-18 22:03:26 +0000 | [diff] [blame^] | 67 |
|
| 68 | <scm>
|
| 69 | <connection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</connection>
|
| 70 | <developerConnection>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</developerConnection>
|
| 71 | <url>scm:svn:https://svn.apache.org/repos/asf/felix/releases/org.apache.felix.ipojo.manipulator-0.8.0</url>
|
| 72 | </scm>
|
| 73 | </project> |