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> |
| 8 | <packaging>osgi-bundle</packaging> |
| 9 | <name>Apache Felix iPOJO</name> |
| 10 | <artifactId>org.apache.felix.ipojo</artifactId> |
Richard S. Hall | 7d1b922 | 2006-10-30 16:36:04 +0000 | [diff] [blame] | 11 | <version>0.7.0-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 | <scope>provided</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>asm</groupId> |
| 21 | <artifactId>asm</artifactId> |
| 22 | <version>2.2.1</version> |
| 23 | </dependency> |
| 24 | <dependency> |
| 25 | <groupId>${pom.groupId}</groupId> |
| 26 | <artifactId>org.apache.felix.ipojo.metadata</artifactId> |
Richard S. Hall | 7d1b922 | 2006-10-30 16:36:04 +0000 | [diff] [blame] | 27 | <version>0.7.0-incubator-SNAPSHOT</version> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 28 | </dependency> |
| 29 | </dependencies> |
| 30 | <build> |
| 31 | <plugins> |
| 32 | <plugin> |
| 33 | <groupId>org.apache.felix.plugins</groupId> |
| 34 | <artifactId>maven-osgi-plugin</artifactId> |
| 35 | <extensions>true</extensions> |
| 36 | <configuration> |
| 37 | <osgiManifest> |
| 38 | <bundleName>iPOJO</bundleName> |
| 39 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
| 40 | <bundleVendor>Clement ESCOFFIER</bundleVendor> |
| 41 | <bundleDescription> iPOJO </bundleDescription> |
| 42 | <importPackage> |
Richard S. Hall | 7d1b922 | 2006-10-30 16:36:04 +0000 | [diff] [blame] | 43 | org.osgi.framework; specification-version="1.3", |
Richard S. Hall | f5931c1 | 2006-12-15 21:56:11 +0000 | [diff] [blame] | 44 | org.osgi.service.cm; specification-version="1.2", |
| 45 | org.osgi.service.log; specification-version="1.3" |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 46 | </importPackage> |
| 47 | <exportPackage> |
Richard S. Hall | 7d1b922 | 2006-10-30 16:36:04 +0000 | [diff] [blame] | 48 | org.apache.felix.ipojo, |
| 49 | org.apache.felix.ipojo.metadata, |
| 50 | org.apache.felix.ipojo.architecture, |
Richard S. Hall | f5931c1 | 2006-12-15 21:56:11 +0000 | [diff] [blame] | 51 | org.apache.felix.ipojo.parser, |
Richard S. Hall | 6e5ad4a | 2007-03-06 14:04:26 +0000 | [diff] [blame] | 52 | org.apache.felix.ipojo.util, |
| 53 | org.apache.felix.ipojo.handlers.dependency, |
| 54 | org.apache.felix.ipojo.handlers.providedservice, |
Richard S. Hall | f5931c1 | 2006-12-15 21:56:11 +0000 | [diff] [blame] | 55 | org.osgi.service.cm; specification-version="1.2", |
| 56 | org.osgi.service.log; specification-version="1.3" |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 57 | </exportPackage> |
Richard S. Hall | 7fa1415 | 2006-06-14 15:22:03 +0000 | [diff] [blame] | 58 | </osgiManifest> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | </project> |