blob: df6a7ccb1eb1bde1dffd772d7a0d39fd03b0c0bd [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>ipojo-bundle</packaging>
9 <name>Apache Felix iPOJO Arch Command</name>
10 <version>0.6.0-SNAPSHOT</version>
11 <artifactId>org.apache.felix.ipojo.arch</artifactId>
12 <dependencies>
13 <dependency>
14 <groupId>${pom.groupId}</groupId>
15 <artifactId>org.apache.felix.ipojo</artifactId>
16 <version>${pom.version}</version>
17 <scope>provided</scope>
18 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.apache.felix.shell</artifactId>
22 <version>0.8.0-SNAPSHOT</version>
23 <scope>provided</scope>
24 </dependency>
25 </dependencies>
26 <build>
27 <plugins>
28 <plugin>
29 <groupId>${pom.groupId}</groupId>
30 <artifactId>org.apache.felix.ipojo.plugin</artifactId>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>iPOJO Arch Command</bundleName>
35 <bundleSymbolicName>${pom.artifactId}</bundleSymbolicName>
36 <bundleDescription>Architecture Shell Command (arch)</bundleDescription>
37 <iPOJOMetadata>metadata.xml</iPOJOMetadata>
38 </osgiManifest>
39 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>