blob: 42bf9c6b323fd2a6c072129f6254cd279ca4b841 [file] [log] [blame]
Humberto Cervantes Macedaa3664ba2006-04-21 16:34:36 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Humberto Cervantes Macedaa3664ba2006-04-21 16:34:36 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix Declarative Services</name>
10 <artifactId>org.apache.felix.scr</artifactId>
11 <dependencies>
12 <dependency>
13 <groupId>${pom.groupId}</groupId>
14 <artifactId>org.osgi.core</artifactId>
15 <version>${pom.version}</version>
16 <scope>provided</scope>
17 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
20 <artifactId>org.osgi.compendium</artifactId>
21 <version>${pom.version}</version>
22 <scope>provided</scope>
23 </dependency>
24 <dependency>
25 <groupId>kxml2</groupId>
26 <artifactId>kxml2</artifactId>
27 <version>2.2.2</version>
28 </dependency> </dependencies>
29 <build>
30 <plugins>
31 <plugin>
32 <groupId>org.apache.felix.plugins</groupId>
33 <artifactId>maven-osgi-plugin</artifactId>
34 <version>${pom.version}</version>
35 <extensions>true</extensions>
36 <configuration>
37 <osgiManifest>
38 <bundleName>Service Component Runtime</bundleName>
39 <bundleVendor>Apache Software Foundation</bundleVendor>
40 <bundleDescription>
41 Implementation of the Declarative Services specification.
42 </bundleDescription>
43 <bundleActivator>
44 org.apache.felix.scr.Activator
45 </bundleActivator>
46 <bundleSymbolicName>org.apache.felix.scr</bundleSymbolicName>
47 <exportPackage>
Richard S. Hall323d9712006-09-22 18:55:50 +000048 org.apache.felix.scr
49 </exportPackage>
50 <importPackage>
51 org.osgi.service.log, org.osgi.service.component, org.osgi.framework
Humberto Cervantes Macedaa3664ba2006-04-21 16:34:36 +000052 </importPackage>
53 </osgiManifest>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>