Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +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> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
| 9 | <name>Apache Felix Service Binder</name> |
| 10 | <artifactId>org.apache.felix.servicebinder</artifactId> |
| 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | d70c291 | 2006-03-30 19:57:31 +0000 | [diff] [blame] | 14 | <artifactId>org.osgi.core</artifactId> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 18 | <dependency> |
Richard S. Hall | d95fb4f | 2006-07-14 19:52:53 +0000 | [diff] [blame] | 19 | <groupId>kxml2</groupId> |
| 20 | <artifactId>kxml2</artifactId> |
| 21 | <version>2.2.2</version> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 22 | </dependency> |
| 23 | </dependencies> |
| 24 | <build> |
| 25 | <plugins> |
| 26 | <plugin> |
| 27 | <groupId>org.apache.felix.plugins</groupId> |
| 28 | <artifactId>maven-osgi-plugin</artifactId> |
| 29 | <version>${pom.version}</version> |
| 30 | <extensions>true</extensions> |
| 31 | <configuration> |
| 32 | <osgiManifest> |
| 33 | <entries> |
| 34 | <property> |
| 35 | <name>Metadata-Location</name> |
| 36 | <value>metadata.xml</value> |
| 37 | </property> |
| 38 | </entries> |
Richard S. Hall | 2e07511 | 2006-09-06 13:39:31 +0000 | [diff] [blame] | 39 | <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 40 | <bundleName>Service Binder</bundleName> |
| 41 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 42 | <!--<bundleVersion>1.1.2</bundleVersion>--> |
| 43 | <bundleDescription> |
| 44 | This bundle provides a mechanism to automate service dependency management. |
| 45 | </bundleDescription> |
| 46 | <bundleActivator> |
| 47 | org.apache.felix.servicebinder.impl.Activator |
| 48 | </bundleActivator> |
| 49 | <exportPackage> |
| 50 | org.apache.felix.servicebinder; specification-version="1.1.0",org.apache.felix.servicebinder.architecture; specification-version="1.1.0" |
| 51 | </exportPackage> |
Karl Pauls | 3b98a3e | 2006-04-18 21:12:09 +0000 | [diff] [blame] | 52 | <importPackage> |
| 53 | org.osgi.framework |
| 54 | </importPackage> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 55 | <metadataLocation> |
| 56 | metadata.xml |
| 57 | </metadataLocation> |
| 58 | </osgiManifest> |
| 59 | </configuration> |
| 60 | </plugin> |
| 61 | </plugins> |
| 62 | </build> |
| 63 | </project> |