blob: 7c791a48b784c558c4b964997c71e670aad725c8 [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../../pom/pom.xml</relativePath>
Richard S. Hall7fa14152006-06-14 15:22:03 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Clement Escoffierace86c52007-06-24 17:44:53 +00009 <packaging>bundle</packaging>
Richard S. Hall7fa14152006-06-14 15:22:03 +000010 <name>Apache Felix iPOJO Arch Command</name>
Clement Escoffier6c6ae8d2007-09-25 13:27:49 +000011 <version>0.7.5-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000012 <artifactId>org.apache.felix.ipojo.arch</artifactId>
13 <dependencies>
14 <dependency>
15 <groupId>${pom.groupId}</groupId>
16 <artifactId>org.apache.felix.ipojo</artifactId>
17 <version>${pom.version}</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000018 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
Richard S. Hall8c011c62007-04-17 14:31:35 +000021 <artifactId>org.apache.felix.ipojo.metadata</artifactId>
22 <version>${pom.version}</version>
Richard S. Hall8c011c62007-04-17 14:31:35 +000023 </dependency>
24 <dependency>
25 <groupId>${pom.groupId}</groupId>
Richard S. Hall7fa14152006-06-14 15:22:03 +000026 <artifactId>org.apache.felix.shell</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000027 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000028 </dependency>
29 </dependencies>
30 <build>
Clement Escoffierace86c52007-06-24 17:44:53 +000031 <plugins>
Richard S. Hall7fa14152006-06-14 15:22:03 +000032 <plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000033 <groupId>org.apache.felix</groupId>
34 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000035 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall7fa14152006-06-14 15:22:03 +000036 <extensions>true</extensions>
37 <configuration>
Clement Escoffierace86c52007-06-24 17:44:53 +000038 <instructions>
Clement Escoffiera2372882007-10-30 10:38:44 +000039 <Bundle-Name>iPOJO Arch Command</Bundle-Name>
Clement Escoffierace86c52007-06-24 17:44:53 +000040 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
41 <Private-Package>org.apache.felix.ipojo.arch</Private-Package>
42 </instructions>
Richard S. Hall7fa14152006-06-14 15:22:03 +000043 </configuration>
44 </plugin>
Clement Escoffierace86c52007-06-24 17:44:53 +000045 <plugin>
46 <groupId>org.apache.felix</groupId>
Clement Escoffierbf5f1fd2007-09-26 09:00:53 +000047 <artifactId>maven-ipojo-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000048 <version>${pom.version}</version>
Clement Escoffierace86c52007-06-24 17:44:53 +000049 <executions>
50 <execution>
51 <goals>
52 <goal>ipojo-bundle</goal>
53 </goals>
54 <configuration>
Clement Escoffier97f48142007-10-19 10:41:11 +000055 <ignoreAnnotations>true</ignoreAnnotations>
Clement Escoffierace86c52007-06-24 17:44:53 +000056 </configuration>
57 </execution>
58 </executions>
59 </plugin>
Richard S. Hall7fa14152006-06-14 15:22:03 +000060 </plugins>
Clement Escoffierace86c52007-06-24 17:44:53 +000061 </build>
Richard S. Hall7fa14152006-06-14 15:22:03 +000062</project>