blob: f9c981e9dce20f6858af53987d8f8db14b1564e4 [file] [log] [blame]
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
5 <version>0.8.0-SNAPSHOT</version>
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. Rodriguezd70c2912006-03-30 19:57:31 +000014 <artifactId>org.osgi.core</artifactId>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000015 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
Richard S. Halld95fb4f2006-07-14 19:52:53 +000019 <groupId>kxml2</groupId>
20 <artifactId>kxml2</artifactId>
21 <version>2.2.2</version>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000022 </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>
39 <bundleName>Service Binder</bundleName>
40 <bundleVendor>Apache Software Foundation</bundleVendor>
41 <!--<bundleVersion>1.1.2</bundleVersion>-->
42 <bundleDescription>
43 This bundle provides a mechanism to automate service dependency management.
44 </bundleDescription>
45 <bundleActivator>
46 org.apache.felix.servicebinder.impl.Activator
47 </bundleActivator>
48 <exportPackage>
49 org.apache.felix.servicebinder; specification-version="1.1.0",org.apache.felix.servicebinder.architecture; specification-version="1.1.0"
50 </exportPackage>
Karl Pauls3b98a3e2006-04-18 21:12:09 +000051 <importPackage>
52 org.osgi.framework
53 </importPackage>
Michael E. Rodriguezcafcf242006-03-25 17:25:49 +000054 <metadataLocation>
55 metadata.xml
56 </metadataLocation>
57 </osgiManifest>
58 </configuration>
59 </plugin>
60 </plugins>
61 </build>
62</project>