Alex Karasulu | 25924e4 | 2006-07-26 15:06:44 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Alex Karasulu | 25924e4 | 2006-07-26 15:06:44 +0000 | [diff] [blame] | 7 | </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. Hall | 140cbe9 | 2007-05-04 21:02:14 +0000 | [diff] [blame] | 13 | <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> |
| 44 | </modules> |
| 45 | </profile> |
| 46 | </profiles> |
Alex Karasulu | 25924e4 | 2006-07-26 15:06:44 +0000 | [diff] [blame] | 47 | |
| 48 | <dependencies> |
| 49 | <dependency> |
| 50 | <groupId>${pom.groupId}</groupId> |
| 51 | <artifactId>org.osgi.core</artifactId> |
| 52 | <version>${pom.version}</version> |
| 53 | <scope>provided</scope> |
| 54 | </dependency> |
| 55 | </dependencies> |
| 56 | </project> |