Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +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 | 00ab802 | 2006-03-07 05:18:57 +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 English Dictionary Service</name> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 11 | <artifactId>org.apache.felix.examples.dictionaryservice</artifactId> |
Karl Pauls | 0a3858c | 2007-07-13 22:03:31 +0000 | [diff] [blame] | 12 | <version>0.9.0-SNAPSHOT</version> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +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 | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 18 | <scope>provided</scope> |
| 19 | </dependency> |
| 20 | </dependencies> |
| 21 | <build> |
| 22 | <plugins> |
| 23 | <plugin> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 24 | <groupId>org.apache.felix</groupId> |
| 25 | <artifactId>maven-bundle-plugin</artifactId> |
| 26 | <version>1.0.0</version> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 27 | <extensions>true</extensions> |
| 28 | <configuration> |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 29 | <instructions> |
| 30 | <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName> |
| 31 | <Bundle-Name>Example English Dictionary</Bundle-Name> |
| 32 | <Bundle-Vendor>Apache Software Foundation</Bundle-Vendor> |
| 33 | <Bundle-Description> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 34 | A bundle that registersan English dictionary service. |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 35 | </Bundle-Description> |
| 36 | <Bundle-Activator> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 37 | org.apache.felix.examples.dictionaryservice.impl.Activator |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 38 | </Bundle-Activator> |
| 39 | <Export-Package> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 40 | org.apache.felix.examples.dictionaryservice |
Richard S. Hall | 0249608 | 2007-08-23 15:29:20 +0000 | [diff] [blame] | 41 | </Export-Package> |
| 42 | <Private-Package> |
| 43 | org.apache.felix.examples.dictionaryservice.* |
| 44 | </Private-Package> |
| 45 | </instructions> |
Alex Karasulu | 00ab802 | 2006-03-07 05:18:57 +0000 | [diff] [blame] | 46 | </configuration> |
| 47 | </plugin> |
| 48 | </plugins> |
| 49 | </build> |
| 50 | </project> |