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> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 10 | <name>Apache Felix Service Binder</name> |
| 11 | <artifactId>org.apache.felix.servicebinder</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | d70c291 | 2006-03-30 19:57:31 +0000 | [diff] [blame] | 16 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 17 | <version>1.1.0-SNAPSHOT</version> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
Michael E. Rodriguez | 406386d | 2007-03-20 02:56:45 +0000 | [diff] [blame] | 21 | <groupId>net.sf.kxml</groupId> |
Richard S. Hall | d95fb4f | 2006-07-14 19:52:53 +0000 | [diff] [blame] | 22 | <artifactId>kxml2</artifactId> |
| 23 | <version>2.2.2</version> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 24 | </dependency> |
| 25 | </dependencies> |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-bundle-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 31 | <version>1.1.0-SNAPSHOT</version> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 32 | <extensions>true</extensions> |
| 33 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 34 | <instructions> |
| 35 | <Bundle-Name>Service Binder</Bundle-Name> |
| 36 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 37 | <Bundle-Vendor>Apache Felix</Bundle-Vendor> |
| 38 | <!--<Bundle-Version>1.1.2</Bundle-Version>--> |
| 39 | <Bundle-Description> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 40 | This bundle provides a mechanism to automate service dependency management. |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 41 | </Bundle-Description> |
| 42 | <Bundle-Activator> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 43 | org.apache.felix.servicebinder.impl.Activator |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 44 | </Bundle-Activator> |
| 45 | <Export-Package> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 46 | 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] | 47 | </Export-Package> |
| 48 | <Private-Package>org.apache.felix.servicebinder.*,org.kxml2.*,org.xmlpull.*</Private-Package> |
| 49 | <Import-Package>!org.apache.felix.servicebinder.*,*</Import-Package> |
| 50 | <Metadata-Location>metadata.xml</Metadata-Location> |
| 51 | </instructions> |
Michael E. Rodriguez | cafcf24 | 2006-03-25 17:25:49 +0000 | [diff] [blame] | 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | </project> |