blob: 2b9f2dfc5178b5dd56bb68d7339bab41ec4c688d [file] [log] [blame]
Clement Escoffierce0e1e52008-03-28 15:33:36 +00001<project>
2 <parent>
3 <groupId>ipojo.examples</groupId>
4 <artifactId>ipojo.examples</artifactId>
5 <version>0.7.6-SNAPSHOT</version>
6 <relativePath>../pom.xml</relativePath>
7 </parent>
8
9 <modelVersion>4.0.0</modelVersion>
10 <artifactId>ipojo.examples.property.handler</artifactId>
11 <name>Apache Felix iPOJO Property Handler</name>
12 <packaging>pom</packaging>
13
14 <profiles>
15 <profile>
16 <id>java5</id>
17 <activation>
18 <jdk>1.5</jdk>
19 </activation>
20 <modules>
21 <module>PropertyHandler</module>
22 <module>PropertyHandlerTest</module>
23 </modules>
24 </profile>
25 <profile>
26 <id>java6</id>
27 <activation>
28 <jdk>1.6</jdk>
29 </activation>
30 <modules>
31 <module>PropertyHandler</module>
32 <module>PropertyHandlerTest</module>
33 </modules>
34 </profile>
35 </profiles>
36</project>