blob: 696ebb542d3137b891bea4656abcdc9f6fddc110 [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>
19 <groupId>kxml</groupId>
20 <artifactId>kxml</artifactId>
21 <version>1.21</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>
51 <metadataLocation>
52 metadata.xml
53 </metadataLocation>
54 </osgiManifest>
55 </configuration>
56 </plugin>
57 </plugins>
58 </build>
59</project>