Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 9 | <name>Apache Felix iPOJO</name> |
| 10 | <artifactId>org.apache.felix.ipojo</artifactId> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 11 | <version>0.7.3-incubator-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>${pom.groupId}</groupId> |
| 15 | <artifactId>org.osgi.core</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 16 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 17 | </dependency> |
| 18 | <dependency> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 19 | <groupId>${pom.groupId}</groupId> |
| 20 | <artifactId>org.osgi.compendium</artifactId> |
| 21 | <version>0.9.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 22 | </dependency> |
| 23 | <dependency> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 24 | <groupId>${pom.groupId}</groupId> |
| 25 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 26 | <version>0.7.3-incubator-SNAPSHOT</version> |
| 27 | </dependency> |
| 28 | <dependency> |
| 29 | <groupId>${pom.groupId}</groupId> |
| 30 | <artifactId>org.apache.felix.ipojo.manipulator</artifactId> |
| 31 | <version>0.7.3-incubator-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 32 | </dependency> |
| 33 | </dependencies> |
| 34 | <build> |
| 35 | <plugins> |
| 36 | <plugin> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 37 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 38 | <artifactId>maven-bundle-plugin</artifactId> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 39 | <extensions>true</extensions> |
| 40 | <configuration> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 41 | <instructions> |
| 42 | <Bundle-Name>iPOJO</Bundle-Name> |
| 43 | <Bundle-Vendor>Clement ESCOFFIER</Bundle-Vendor> |
| 44 | <Bundle-Description> iPOJO </Bundle-Description> |
Clement Escoffier | 2e35112 | 2007-07-02 11:36:35 +0000 | [diff] [blame] | 45 | <Bundle-Activator>org.apache.felix.ipojo.Extender</Bundle-Activator> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 46 | <Import-Package> |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 47 | org.osgi.framework, |
| 48 | org.osgi.service.cm, |
| 49 | org.osgi.service.log |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 50 | </Import-Package> |
| 51 | <Private-Package> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 52 | org.apache.felix.ipojo.manipulation, |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 53 | org.apache.felix.ipojo.composite.architecture, |
| 54 | org.apache.felix.ipojo.composite.service*, |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 55 | org.apache.felix.ipojo.composite.instance, |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 56 | org.apache.felix.ipojo.handlers.architecture, |
| 57 | org.apache.felix.ipojo.handlers.configuration, |
| 58 | org.apache.felix.ipojo.handlers.dependency.nullable, |
| 59 | org.apache.felix.ipojo.handlers.lifecycle.callback, |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 60 | org.objectweb.asm, |
Clement Escoffier | 18a6a80 | 2007-06-26 10:49:53 +0000 | [diff] [blame] | 61 | org.objectweb.asm.commons, |
| 62 | org.objectweb.asm.tree <!-- to remove --> |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 63 | </Private-Package> |
| 64 | <Export-Package> |
Clement Escoffier | ace86c5 | 2007-06-24 17:44:53 +0000 | [diff] [blame] | 65 | org.apache.felix.ipojo; version="0.7.3", |
| 66 | org.apache.felix.ipojo.metadata; version="0.7.3", |
| 67 | org.apache.felix.ipojo.architecture; version="0.7.3", |
| 68 | org.apache.felix.ipojo.parser; version="0.7.3", |
| 69 | org.apache.felix.ipojo.util; version="0.7.3", |
| 70 | org.apache.felix.ipojo.handlers.dependency; version="0.7.3", |
| 71 | org.apache.felix.ipojo.handlers.providedservice; version="0.7.3", |
| 72 | org.apache.felix.ipojo.composite; version="0.7.3", |
Richard S. Hall | 0b8ba0f | 2007-05-18 15:13:47 +0000 | [diff] [blame] | 73 | org.osgi.service.cm, |
| 74 | org.osgi.service.log |
Richard S. Hall | 8c011c6 | 2007-04-17 14:31:35 +0000 | [diff] [blame] | 75 | </Export-Package> |
| 76 | </instructions> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 77 | </configuration> |
| 78 | </plugin> |
| 79 | </plugins> |
| 80 | </build> |
| 81 | </project> |