Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 5 | <version>1.1.0-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../../pom/pom.xml</relativePath> |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
| 9 | <packaging>osgi-bundle</packaging> |
| 10 | <name>Apache Felix Examples: French Dictionary Service</name> |
| 11 | <artifactId>org.apache.felix.examples.frenchdictionary</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 13 | <dependencies> |
| 14 | <dependency> |
| 15 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 16 | <artifactId>org.osgi.core</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 17 | <version>1.1.0-SNAPSHOT</version> |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | <dependency> |
| 21 | <groupId>${pom.groupId}</groupId> |
| 22 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 23 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
| 30 | <groupId>org.apache.felix.plugins</groupId> |
| 31 | <artifactId>maven-osgi-plugin</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 32 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 33 | <extensions>true</extensions> |
| 34 | <configuration> |
| 35 | <osgiManifest> |
| 36 | <bundleName>French Dictionary Example</bundleName> |
| 37 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 38 | <bundleDescription> |
| 39 | A bundle that registers a French dictionary service. |
| 40 | </bundleDescription> |
| 41 | <bundleActivator> |
| 42 | org.apache.felix.examples.frenchdictionary.Activator |
| 43 | </bundleActivator> |
| 44 | <importPackage> |
Karl Pauls | 3b98a3e | 2006-04-18 21:12:09 +0000 | [diff] [blame] | 45 | org.osgi.framework, org.apache.felix.examples.dictionaryservice |
Alex Karasulu | af4ffa1 | 2006-03-07 06:07:36 +0000 | [diff] [blame] | 46 | </importPackage> |
| 47 | </osgiManifest> |
| 48 | </configuration> |
| 49 | </plugin> |
| 50 | </plugins> |
| 51 | </build> |
| 52 | </project> |