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> |
Alex Karasulu | 25924e4 | 2006-07-26 15:06:44 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>pom</packaging> |
| 9 | <name>Apache Felix Examples: Build</name> |
| 10 | <artifactId>build</artifactId> |
| 11 | |
Richard S. Hall | 140cbe9 | 2007-05-04 21:02:14 +0000 | [diff] [blame] | 12 | <profiles> |
| 13 | <profile> |
| 14 | <id>packaging-osgi-bundle</id> |
| 15 | <activation> |
| 16 | <property> |
| 17 | <name>packaging</name> |
| 18 | <value>osgi-bundle</value> |
| 19 | </property> |
| 20 | </activation> |
| 21 | <modules> |
| 22 | <module>eventlistener</module> |
| 23 | <module>dictionaryservice</module> |
| 24 | <module>dictionaryservice.itest</module> |
| 25 | <module>frenchdictionary</module> |
| 26 | <module>dictionaryclient</module> |
| 27 | <module>dictionaryclient2</module> |
| 28 | <module>spellcheckservice</module> |
| 29 | <module>spellcheckclient</module> |
| 30 | <module>spellcheckbinder</module> |
| 31 | </modules> |
| 32 | </profile> |
| 33 | <profile> |
| 34 | <id>packaging-bundle</id> |
| 35 | <activation> |
| 36 | <property> |
| 37 | <name>packaging</name> |
| 38 | <value>bundle</value> |
| 39 | </property> |
| 40 | </activation> |
| 41 | <modules> |
| 42 | <module>spellcheckscr</module> |
| 43 | </modules> |
| 44 | </profile> |
| 45 | </profiles> |
Alex Karasulu | 25924e4 | 2006-07-26 15:06:44 +0000 | [diff] [blame] | 46 | |
| 47 | <dependencies> |
| 48 | <dependency> |
| 49 | <groupId>${pom.groupId}</groupId> |
| 50 | <artifactId>org.osgi.core</artifactId> |
| 51 | <version>${pom.version}</version> |
| 52 | <scope>provided</scope> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | </project> |