Clement Escoffier | 15b4c1a | 2009-04-22 09:14:00 +0000 | [diff] [blame^] | 1 | <project> |
| 2 | <modelVersion>4.0.0</modelVersion> |
| 3 | <packaging>bundle</packaging> |
| 4 | <groupId>org.apache.felix</groupId> |
| 5 | <artifactId>org.apache.felix.ipojo.online.manipulator</artifactId> |
| 6 | <version>1.3.0-SNAPSHOT</version> |
| 7 | <name>Apache Felix iPOJO URL Handler</name> |
| 8 | |
| 9 | <build> |
| 10 | <plugins> |
| 11 | <plugin> |
| 12 | <groupId>org.apache.felix</groupId> |
| 13 | <artifactId>maven-bundle-plugin</artifactId> |
| 14 | <version>1.4.3</version> |
| 15 | <extensions>true</extensions> |
| 16 | <configuration> |
| 17 | <instructions> |
| 18 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 19 | <Private-Package>org.apache.felix.org.apache.felix.ipojo.online.manipulator</Private-Package> |
| 20 | <Export-Package> |
| 21 | org.apache.felix.ipojo.manipulator, |
| 22 | org.apache.felix.ipojo.xml.parser, |
| 23 | org.apache.felix.ipojo.manipulation, |
| 24 | org.apache.felix.ipojo.manipulation.annotations, |
| 25 | org.objectweb.asm.commons, org.objectweb.asm |
| 26 | </Export-Package> |
| 27 | <Import-Package> |
| 28 | !org.objectweb.asm.tree, !sun.io, |
| 29 | * |
| 30 | </Import-Package> |
| 31 | <Embed-Dependency>xercesImpl|xml-resolver</Embed-Dependency> |
| 32 | </instructions> |
| 33 | </configuration> |
| 34 | </plugin> |
| 35 | <plugin> |
| 36 | <groupId>org.apache.felix</groupId> |
| 37 | <artifactId>maven-ipojo-plugin</artifactId> |
| 38 | <version>1.3.0-SNAPSHOT</version> |
| 39 | <executions> |
| 40 | <execution> |
| 41 | <goals> |
| 42 | <goal>ipojo-bundle</goal> |
| 43 | </goals> |
| 44 | </execution> |
| 45 | </executions> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | <dependencies> |
| 50 | <dependency> |
| 51 | <groupId>org.apache.felix</groupId> |
| 52 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 53 | <version>1.3.0-SNAPSHOT</version> |
| 54 | </dependency> |
| 55 | <dependency> |
| 56 | <groupId>asm</groupId> |
| 57 | <artifactId>asm-all</artifactId> |
| 58 | <version>3.0</version> |
| 59 | <exclusions> |
| 60 | <exclusion> |
| 61 | <groupId>asm</groupId> |
| 62 | <artifactId>asm-tree</artifactId> |
| 63 | </exclusion> |
| 64 | </exclusions> |
| 65 | </dependency> |
| 66 | <dependency> |
| 67 | <groupId>org.apache.felix</groupId> |
| 68 | <artifactId>org.osgi.core</artifactId> |
| 69 | <version>1.2.0</version> |
| 70 | </dependency> |
| 71 | <dependency> |
| 72 | <groupId>xerces</groupId> |
| 73 | <artifactId>xercesImpl</artifactId> |
| 74 | <version>2.9.1</version> |
| 75 | </dependency> |
| 76 | <dependency> |
| 77 | <groupId>xml-resolver</groupId> |
| 78 | <artifactId>xml-resolver</artifactId> |
| 79 | <version>1.2</version> |
| 80 | </dependency> |
| 81 | </dependencies> |
| 82 | </project> |