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