blob: a9119a004e0fcab2a493c6690c54b1105b221e9d [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>
11 <version>0.6.0-SNAPSHOT</version>
12 <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>
27 <version>${pom.version}</version>
28 </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>
43 org.osgi.framework, org.osgi.service.cm
44 </importPackage>
45 <exportPackage>
46 org.apache.felix.ipojo, org.apache.felix.ipojo.metadata, org.apache.felix.ipojo.architecture, org.apache.felix.ipojo.parser, org.osgi.service.cm
47 </exportPackage>
Richard S. Hall7fa14152006-06-14 15:22:03 +000048 </osgiManifest>
49 </configuration>
50 </plugin>
51 </plugins>
52 </build>
53</project>