Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | 8e1e6f3 | 2006-03-09 20:37:02 +0000 | [diff] [blame] | 5 | <version>0.8.0-SNAPSHOT</version> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 6 | </parent> |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | <packaging>osgi-bundle</packaging> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 9 | <name>Apache Felix Examples: Dynamic Dictionary Client</name> |
| 10 | <artifactId>org.apache.felix.examples.dictionaryclient2</artifactId> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 11 | <dependencies> |
| 12 | <dependency> |
| 13 | <groupId>${pom.groupId}</groupId> |
Michael E. Rodriguez | 3b4e4ef | 2006-04-02 20:07:31 +0000 | [diff] [blame] | 14 | <artifactId>org.osgi.core</artifactId> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 15 | <version>${pom.version}</version> |
| 16 | <scope>provided</scope> |
| 17 | </dependency> |
| 18 | <dependency> |
| 19 | <groupId>${pom.groupId}</groupId> |
| 20 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
| 21 | <version>${pom.version}</version> |
| 22 | <scope>provided</scope> |
| 23 | </dependency> |
| 24 | </dependencies> |
| 25 | <build> |
| 26 | <plugins> |
| 27 | <plugin> |
| 28 | <groupId>org.apache.felix.plugins</groupId> |
| 29 | <artifactId>maven-osgi-plugin</artifactId> |
| 30 | <version>${pom.version}</version> |
| 31 | <extensions>true</extensions> |
| 32 | <configuration> |
| 33 | <osgiManifest> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 34 | <bundleName>Dynamic Dictionary Client Example</bundleName> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 35 | <bundleVendor>Apache Software Foundation</bundleVendor> |
| 36 | <bundleDescription> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 37 | A client bundle with more complex requirements for the dictionary. |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 38 | </bundleDescription> |
| 39 | <bundleActivator> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 40 | org.apache.felix.examples.dictionaryclient2.Activator |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 41 | </bundleActivator> |
| 42 | <importPackage> |
| 43 | org.apache.felix.examples.dictionaryservice |
| 44 | </importPackage> |
| 45 | </osgiManifest> |
| 46 | </configuration> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
| 50 | </project> |