blob: 0b47da4d963f504b4d2feb666feb17a74aee9fc9 [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>
5 <version>0.8.0-SNAPSHOT</version>
6 </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>
16 <version>0.8.0-SNAPSHOT</version>
17 <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",
44 org.osgi.service.cm; specification-version="1.2"
Richard S. Hall7fa14152006-06-14 15:22:03 +000045 </importPackage>
46 <exportPackage>
Richard S. Hall7d1b9222006-10-30 16:36:04 +000047 org.apache.felix.ipojo,
48 org.apache.felix.ipojo.metadata,
49 org.apache.felix.ipojo.architecture,
50 org.apache.felix.ipojo.parser,
51 org.osgi.service.cm; specification-version="1.2"
Richard S. Hall7fa14152006-06-14 15:22:03 +000052 </exportPackage>
Richard S. Hall7fa14152006-06-14 15:22:03 +000053 </osgiManifest>
54 </configuration>
55 </plugin>
56 </plugins>
57 </build>
58</project>