blob: 22dd8037feed645f1111dd78c22d0eea393cba01 [file] [log] [blame]
Alex Karasulu25924e42006-07-26 15:06:44 +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>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Alex Karasulu25924e42006-07-26 15:06:44 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
9 <packaging>pom</packaging>
10 <name>Apache Felix Examples: Build</name>
11 <artifactId>build</artifactId>
12
Richard S. Hall140cbe92007-05-04 21:02:14 +000013 <profiles>
14 <profile>
15 <id>packaging-osgi-bundle</id>
16 <activation>
17 <property>
18 <name>packaging</name>
19 <value>osgi-bundle</value>
20 </property>
21 </activation>
22 <modules>
23 <module>eventlistener</module>
24 <module>dictionaryservice</module>
25 <module>dictionaryservice.itest</module>
26 <module>frenchdictionary</module>
27 <module>dictionaryclient</module>
28 <module>dictionaryclient2</module>
29 <module>spellcheckservice</module>
30 <module>spellcheckclient</module>
31 <module>spellcheckbinder</module>
32 </modules>
33 </profile>
34 <profile>
35 <id>packaging-bundle</id>
36 <activation>
37 <property>
38 <name>packaging</name>
39 <value>bundle</value>
40 </property>
41 </activation>
42 <modules>
43 <module>spellcheckscr</module>
Richard S. Hallbad49dc2007-07-13 16:08:06 +000044 <module>servicebased.host</module>
45 <module>servicebased.circle</module>
46 <module>servicebased.square</module>
47 <module>servicebased.triangle</module>
Richard S. Hall140cbe92007-05-04 21:02:14 +000048 </modules>
49 </profile>
50 </profiles>
Alex Karasulu25924e42006-07-26 15:06:44 +000051
52 <dependencies>
53 <dependency>
54 <groupId>${pom.groupId}</groupId>
55 <artifactId>org.osgi.core</artifactId>
56 <version>${pom.version}</version>
57 <scope>provided</scope>
58 </dependency>
59 </dependencies>
60</project>