blob: 55bb5a8ee5fbb7b1f37fb7c9438de32a5a5c8509 [file] [log] [blame]
Karl Pauls589e2b32007-07-11 18:29:29 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
7 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>bundle</packaging>
10 <name>Apache Felix Declarative Services</name>
11 <description>
12 Implementation of the Declarative Services specification 1.0
13 </description>
14 <artifactId>org.apache.felix.scr</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000015 <version>0.9.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000016 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Felix Meschberger644283d2007-08-22 15:28:05 +000020 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000021 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000025 <version>0.9.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000026 </dependency>
27 <dependency>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000028 <groupId>${pom.groupId}</groupId>
29 <artifactId>org.apache.felix.shell</artifactId>
30 <version>1.0.0</version>
31 </dependency>
32 <dependency>
Karl Pauls589e2b32007-07-11 18:29:29 +000033 <groupId>net.sf.kxml</groupId>
34 <artifactId>kxml2</artifactId>
35 <version>2.2.2</version>
36 </dependency>
37 </dependencies>
38 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.apache.felix</groupId>
42 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger644283d2007-08-22 15:28:05 +000043 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000044 <extensions>true</extensions>
45 <configuration>
46 <instructions>
47 <Bundle-SymbolicName>
48 ${artifactId}
49 </Bundle-SymbolicName>
50 <Bundle-Vendor>
51 Apache Software Foundation
52 </Bundle-Vendor>
53 <Bundle-Activator>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000054 org.apache.felix.scr.impl.Activator
Karl Pauls589e2b32007-07-11 18:29:29 +000055 </Bundle-Activator>
56 <Export-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000057 org.apache.felix.scr;version=${pom.version},
Felix Meschberger644283d2007-08-22 15:28:05 +000058 org.osgi.service.cm,
59 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +000060 </Export-Package>
61 <Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000062 org.apache.felix.scr.impl.*, org.kxml2.io,
Felix Meschberger644283d2007-08-22 15:28:05 +000063 org.osgi.util.tracker, org.xmlpull.v1
Karl Pauls589e2b32007-07-11 18:29:29 +000064 </Private-Package>
Felix Meschbergerd25a63d2007-11-23 13:02:49 +000065 <Import-Package>
66 org.apache.felix.shell;resolution:=optional,*
67 </Import-Package>
Karl Pauls589e2b32007-07-11 18:29:29 +000068 <DynamicImport-Package>
69 org.osgi.service.log
70 </DynamicImport-Package>
71 </instructions>
72 </configuration>
73 </plugin>
74 </plugins>
75 </build>
76</project>