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> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 8 | <packaging>bundle</packaging> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 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> |
Michael E. Rodriguez | 406386d | 2007-03-20 02:56:45 +0000 | [diff] [blame] | 19 | <groupId>net.sf.kxml</groupId> |
Richard S. Hall | d95fb4f | 2006-07-14 19:52:53 +0000 | [diff] [blame] | 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> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 27 | <groupId>org.apache.felix</groupId> |
| 28 | <artifactId>maven-bundle-plugin</artifactId> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 29 | <extensions>true</extensions> |
| 30 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 31 | <instructions> |
| 32 | <Bundle-Name>Service Binder</Bundle-Name> |
| 33 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 34 | <Bundle-Vendor>Apache Felix</Bundle-Vendor> |
| 35 | <!--<Bundle-Version>1.1.2</Bundle-Version>--> |
| 36 | <Bundle-Description> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 37 | This bundle provides a mechanism to automate service dependency management. |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 38 | </Bundle-Description> |
| 39 | <Bundle-Activator> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 40 | org.apache.felix.servicebinder.impl.Activator |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 41 | </Bundle-Activator> |
| 42 | <Export-Package> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 43 | org.apache.felix.servicebinder; specification-version="1.1.0",org.apache.felix.servicebinder.architecture; specification-version="1.1.0" |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 44 | </Export-Package> |
| 45 | <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package> |
| 46 | <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package> |
| 47 | <Metadata-Location>metadata.xml</Metadata-Location> |
| 48 | </instructions> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | </project> |