blob: fa7a6fff34f64501ef43b83ea249bf4366388205 [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>
28 <groupId>net.sf.kxml</groupId>
29 <artifactId>kxml2</artifactId>
30 <version>2.2.2</version>
31 </dependency>
32 </dependencies>
33 <build>
34 <plugins>
35 <plugin>
36 <groupId>org.apache.felix</groupId>
37 <artifactId>maven-bundle-plugin</artifactId>
Felix Meschberger644283d2007-08-22 15:28:05 +000038 <version>1.0.0</version>
Karl Pauls589e2b32007-07-11 18:29:29 +000039 <extensions>true</extensions>
40 <configuration>
41 <instructions>
42 <Bundle-SymbolicName>
43 ${artifactId}
44 </Bundle-SymbolicName>
45 <Bundle-Vendor>
46 Apache Software Foundation
47 </Bundle-Vendor>
48 <Bundle-Activator>
49 org.apache.felix.scr.Activator
50 </Bundle-Activator>
51 <Export-Package>
Felix Meschberger644283d2007-08-22 15:28:05 +000052 org.osgi.service.cm,
53 org.osgi.service.component
Karl Pauls589e2b32007-07-11 18:29:29 +000054 </Export-Package>
55 <Private-Package>
56 org.apache.felix.scr.*, org.kxml2.io,
Felix Meschberger644283d2007-08-22 15:28:05 +000057 org.osgi.util.tracker, org.xmlpull.v1
Karl Pauls589e2b32007-07-11 18:29:29 +000058 </Private-Package>
59 <DynamicImport-Package>
60 org.osgi.service.log
61 </DynamicImport-Package>
62 </instructions>
63 </configuration>
64 </plugin>
65 </plugins>
66 </build>
67</project>