blob: a32aa47efd7199acb064b718223bdc37d6c9b45f [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>
Clement Escoffierace86c52007-06-24 17:44:53 +00008 <packaging>bundle</packaging>
Richard S. Hall7fa14152006-06-14 15:22:03 +00009 <name>Apache Felix iPOJO Arch Command</name>
Clement Escoffierace86c52007-06-24 17:44:53 +000010 <version>0.7.3-incubator-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000011 <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>
Richard S. Hall7fa14152006-06-14 15:22:03 +000017 </dependency>
18 <dependency>
19 <groupId>${pom.groupId}</groupId>
Richard S. Hall8c011c62007-04-17 14:31:35 +000020 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
21 <version>${pom.version}</version>
Richard S. Hall8c011c62007-04-17 14:31:35 +000022 </dependency>
23 <dependency>
24 <groupId>${pom.groupId}</groupId>
Richard S. Hall7fa14152006-06-14 15:22:03 +000025 <artifactId>org.apache.felix.shell</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +000026 <version>0.9.0-incubator-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000027 </dependency>
28 </dependencies>
29 <build>
Clement Escoffierace86c52007-06-24 17:44:53 +000030 <plugins>
Richard S. Hall7fa14152006-06-14 15:22:03 +000031 <plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000032 <groupId>org.apache.felix</groupId>
33 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall7fa14152006-06-14 15:22:03 +000034 <extensions>true</extensions>
35 <configuration>
Clement Escoffierace86c52007-06-24 17:44:53 +000036 <instructions>
37 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
38 <Private-Package>org.apache.felix.ipojo.arch</Private-Package>
39 </instructions>
Richard S. Hall7fa14152006-06-14 15:22:03 +000040 </configuration>
41 </plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000042 <plugin>
43 <groupId>org.apache.felix</groupId>
44 <artifactId>org.apache.felix.ipojo.plugin</artifactId>
45 <executions>
46 <execution>
47 <goals>
48 <goal>ipojo-bundle</goal>
49 </goals>
50 <configuration>
51 <metadata>metadata.xml</metadata>
52 </configuration>
53 </execution>
54 </executions>
55 </plugin>
Richard S. Hall7fa14152006-06-14 15:22:03 +000056 </plugins>
Clement Escoffierace86c52007-06-24 17:44:53 +000057 </build>
Richard S. Hall7fa14152006-06-14 15:22:03 +000058</project>