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> |
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 | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
| 10 | <name>Apache Felix Example Dynamic Dictionary Client</name> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 11 | <artifactId>org.apache.felix.examples.dictionaryclient2</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +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> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 17 | <version>1.0.0</version> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +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 | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 24 | <scope>provided</scope> |
| 25 | </dependency> |
| 26 | </dependencies> |
| 27 | <build> |
| 28 | <plugins> |
| 29 | <plugin> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 30 | <groupId>org.apache.felix</groupId> |
| 31 | <artifactId>maven-bundle-plugin</artifactId> |
| 32 | <version>1.0.0</version> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 33 | <extensions>true</extensions> |
| 34 | <configuration> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 35 | <instructions> |
| 36 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 37 | <Bundle-Name>Example Dynamic Dictionary Client</Bundle-Name> |
| 38 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 39 | <Bundle-Description> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 40 | A client bundle with more complex requirements for the dictionary. |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 41 | </Bundle-Description> |
| 42 | <Bundle-Activator> |
Alex Karasulu | fc4f323 | 2006-03-07 08:05:43 +0000 | [diff] [blame] | 43 | org.apache.felix.examples.dictionaryclient2.Activator |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 44 | </Bundle-Activator> |
| 45 | <Private-Package> |
| 46 | org.apache.felix.examples.dictionaryclient2.* |
| 47 | </Private-Package> |
| 48 | </instructions> |
Alex Karasulu | c137721 | 2006-03-07 07:48:25 +0000 | [diff] [blame] | 49 | </configuration> |
| 50 | </plugin> |
| 51 | </plugins> |
| 52 | </build> |
| 53 | </project> |