Clement Escoffier | e50ede5 | 2008-03-28 15:33:36 +0000 | [diff] [blame^] | 1 | <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 | <modelVersion>4.0.0</modelVersion>
|
| 9 | <artifactId>ipojo.tutorial</artifactId>
|
| 10 | <name>Apache Felix iPOJO Tutorial</name>
|
| 11 | <packaging>pom</packaging>
|
| 12 | <modules>
|
| 13 | <module>hello.service</module>
|
| 14 | <module>hello.impl</module>
|
| 15 | <module>hello.client</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>hello.impl.annotation</module>
|
| 26 | <module>hello.client.annotation</module>
|
| 27 | </modules>
|
| 28 | </profile>
|
| 29 | <profile>
|
| 30 | <id>java6</id>
|
| 31 | <activation>
|
| 32 | <jdk>1.6</jdk>
|
| 33 | </activation>
|
| 34 | <modules>
|
| 35 | <module>hello.impl.annotation</module>
|
| 36 | <module>hello.client.annotation</module>
|
| 37 | </modules>
|
| 38 | </profile>
|
| 39 | </profiles>
|
| 40 | </project> |