Felix Meschberger | add2b4a | 2007-04-11 18:12:33 +0000 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project> |
| 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | <parent> |
| 5 | <groupId>org.apache.felix</groupId> |
| 6 | <artifactId>felix</artifactId> |
| 7 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 8 | </parent> |
| 9 | |
Felix Meschberger | fdb360f | 2007-04-11 18:51:16 +0000 | [diff] [blame] | 10 | <artifactId>org.apache.felix.configadmin</artifactId> |
Felix Meschberger | add2b4a | 2007-04-11 18:12:33 +0000 | [diff] [blame] | 11 | <packaging>bundle</packaging> |
| 12 | |
| 13 | <name>Apache Felix Configuration Admin Service</name> |
| 14 | <description> |
| 15 | Implementation of the OSGi Configuration Admin Service Specification 1.2 |
| 16 | </description> |
| 17 | |
| 18 | <dependencies> |
| 19 | <dependency> |
| 20 | <groupId>${pom.groupId}</groupId> |
| 21 | <artifactId>org.osgi.core</artifactId> |
| 22 | </dependency> |
| 23 | <dependency> |
| 24 | <groupId>${pom.groupId}</groupId> |
| 25 | <artifactId>org.osgi.compendium</artifactId> |
| 26 | </dependency> |
| 27 | </dependencies> |
| 28 | |
| 29 | <build> |
| 30 | <plugins> |
| 31 | <plugin> |
| 32 | <groupId>org.apache.felix</groupId> |
Richard S. Hall | 797bc98 | 2007-05-21 18:35:07 +0000 | [diff] [blame] | 33 | <artifactId>maven-bundle-plugin</artifactId> |
Felix Meschberger | add2b4a | 2007-04-11 18:12:33 +0000 | [diff] [blame] | 34 | <version>0.9.0-incubator-SNAPSHOT</version> |
| 35 | <extensions>true</extensions> |
| 36 | <configuration> |
| 37 | <instructions> |
| 38 | <Bundle-Category>osgi</Bundle-Category> |
| 39 | <Export-Package> |
| 40 | org.apache.felix.cm, |
| 41 | org.apache.felix.cm.file, |
| 42 | org.osgi.service.cm;version=1.2 |
| 43 | </Export-Package> |
| 44 | <Private-Package> |
| 45 | org.apache.felix.cm.* |
| 46 | </Private-Package> |
| 47 | <Bundle-Activator> |
| 48 | org.apache.felix.cm.impl.ConfigurationManager |
| 49 | </Bundle-Activator> |
| 50 | </instructions> |
| 51 | </configuration> |
| 52 | </plugin> |
| 53 | </plugins> |
| 54 | </build> |
| 55 | </project> |