blob: eb1ea8d85ecd199614ade022ce62c6a9a1cf5a74 [file] [log] [blame]
Richard S. Hall7fa14152006-06-14 15:22:03 +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>
Richard S. Hall7fa14152006-06-14 15:22:03 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix iPOJO</name>
10 <artifactId>org.apache.felix.ipojo</artifactId>
Richard S. Hall7d1b9222006-10-30 16:36:04 +000011 <version>0.7.0-incubator-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000012 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
15 <artifactId>org.osgi.core</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000016 <version>0.9.0-incubator-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000017 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>asm</groupId>
21 <artifactId>asm</artifactId>
22 <version>2.2.1</version>
23 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
26 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
Richard S. Hall7d1b9222006-10-30 16:36:04 +000027 <version>0.7.0-incubator-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000028 </dependency>
29 </dependencies>
30 <build>
31 <plugins>
32 <plugin>
33 <groupId>org.apache.felix.plugins</groupId>
34 <artifactId>maven-osgi-plugin</artifactId>
35 <extensions>true</extensions>
36 <configuration>
37 <osgiManifest>
38 <bundleName>iPOJO</bundleName>
39 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
40 <bundleVendor>Clement ESCOFFIER</bundleVendor>
41 <bundleDescription> iPOJO </bundleDescription>
42 <importPackage>
Richard S. Hall7d1b9222006-10-30 16:36:04 +000043 org.osgi.framework; specification-version="1.3",
Richard S. Hallf5931c12006-12-15 21:56:11 +000044 org.osgi.service.cm; specification-version="1.2",
45 org.osgi.service.log; specification-version="1.3"
Richard S. Hall7fa14152006-06-14 15:22:03 +000046 </importPackage>
47 <exportPackage>
Richard S. Hall7d1b9222006-10-30 16:36:04 +000048 org.apache.felix.ipojo,
49 org.apache.felix.ipojo.metadata,
50 org.apache.felix.ipojo.architecture,
Richard S. Hallf5931c12006-12-15 21:56:11 +000051 org.apache.felix.ipojo.parser,
Richard S. Hall6e5ad4a2007-03-06 14:04:26 +000052 org.apache.felix.ipojo.util,
53 org.apache.felix.ipojo.handlers.dependency,
54 org.apache.felix.ipojo.handlers.providedservice,
Richard S. Hallf46b9e82007-04-10 15:16:56 +000055 org.apache.felix.ipojo.composite,
Richard S. Hallf5931c12006-12-15 21:56:11 +000056 org.osgi.service.cm; specification-version="1.2",
57 org.osgi.service.log; specification-version="1.3"
Richard S. Hall7fa14152006-06-14 15:22:03 +000058 </exportPackage>
Richard S. Hall7fa14152006-06-14 15:22:03 +000059 </osgiManifest>
60 </configuration>
61 </plugin>
62 </plugins>
63 </build>
64</project>