blob: fb18b67ad02ef3186cab9049982cc4823099944e [file] [log] [blame]
Humberto Cervantes Macedaa3664ba2006-04-21 16:34:36 +00001<project>
Felix Meschberger55aee8e2007-05-15 10:27:43 +00002 <parent>
Felix Meschberger8f1542f2007-03-29 07:43:17 +00003 <groupId>org.apache.felix</groupId>
Felix Meschberger55aee8e2007-05-15 10:27:43 +00004 <artifactId>felix</artifactId>
Felix Meschbergera76c1962007-03-29 07:54:49 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Felix Meschberger55aee8e2007-05-15 10:27:43 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>bundle</packaging>
9 <name>Apache Felix Declarative Services</name>
10 <description>
11 Implementation of the Declarative Services specification 1.0
12 </description>
13 <artifactId>org.apache.felix.scr</artifactId>
14 <dependencies>
15 <dependency>
16 <groupId>${pom.groupId}</groupId>
17 <artifactId>org.osgi.core</artifactId>
18 <version>${pom.version}</version>
19 </dependency>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.compendium</artifactId>
23 <version>${pom.version}</version>
24 </dependency>
25 <dependency>
26 <groupId>net.sf.kxml</groupId>
27 <artifactId>kxml2</artifactId>
28 <version>2.2.2</version>
29 </dependency>
30 </dependencies>
31 <build>
32 <plugins>
33 <plugin>
34 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000035 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger55aee8e2007-05-15 10:27:43 +000036 <version>0.9.0-incubator-SNAPSHOT</version>
37 <extensions>true</extensions>
38 <configuration>
39 <instructions>
40 <Bundle-SymbolicName>
41 ${artifactId}
42 </Bundle-SymbolicName>
43 <Bundle-Vendor>
44 Apache Software Foundation
45 </Bundle-Vendor>
46 <Bundle-Activator>
47 org.apache.felix.scr.Activator
48 </Bundle-Activator>
49 <Export-Package>
50 org.osgi.service.cm, org.osgi.service.component
51 </Export-Package>
52 <Private-Package>
53 org.apache.felix.scr.*, org.kxml2.io,
54 org.osgi.util.tracker,
55 org.xmlpull.v1
56 </Private-Package>
57 <DynamicImport-Package>
58 org.osgi.service.log
59 </DynamicImport-Package>
60 </instructions>
61 </configuration>
62 </plugin>
63 </plugins>
64 </build>
Humberto Cervantes Macedaa3664ba2006-04-21 16:34:36 +000065</project>