Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 1 | <project> |
| 2 | <parent> |
| 3 | <groupId>org.apache.felix</groupId> |
| 4 | <artifactId>felix</artifactId> |
Richard S. Hall | f2be196 | 2006-12-22 19:46:42 +0000 | [diff] [blame] | 5 | <version>0.9.0-incubator-SNAPSHOT</version> |
Karl Pauls | 589e2b3 | 2007-07-11 18:29:29 +0000 | [diff] [blame] | 6 | <relativePath>../pom/pom.xml</relativePath> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 7 | </parent> |
| 8 | <modelVersion>4.0.0</modelVersion> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 9 | <packaging>bundle</packaging> |
| 10 | <name>Apache Felix Wire Admin</name> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 11 | <artifactId>org.apache.felix.wireadmin</artifactId> |
| 12 | <dependencies> |
| 13 | <dependency> |
| 14 | <groupId>${pom.groupId}</groupId> |
| 15 | <artifactId>org.osgi.core</artifactId> |
| 16 | <version>${pom.version}</version> |
| 17 | <scope>provided</scope> |
| 18 | </dependency> |
| 19 | <dependency> |
| 20 | <groupId>${pom.groupId}</groupId> |
| 21 | <artifactId>org.osgi.compendium</artifactId> |
| 22 | <version>${pom.version}</version> |
| 23 | <scope>provided</scope> |
| 24 | </dependency> |
| 25 | </dependencies> |
| 26 | <build> |
| 27 | <plugins> |
| 28 | <plugin> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 29 | <groupId>org.apache.felix</groupId> |
| 30 | <artifactId>maven-bundle-plugin</artifactId> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 31 | <extensions>true</extensions> |
| 32 | <configuration> |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 33 | <instructions> |
| 34 | <Bundle-Name>WireAdmin</Bundle-Name> |
| 35 | <Bundle-Vendor>Apache Felix</Bundle-Vendor> |
| 36 | <Bundle-Description> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 37 | Implementation of the WireAdmin Service. |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 38 | </Bundle-Description> |
| 39 | <Bundle-Activator> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 40 | org.apache.felix.wireadmin.Activator |
Richard S. Hall | 0ad669d | 2007-06-18 19:05:48 +0000 | [diff] [blame] | 41 | </Bundle-Activator> |
| 42 | <Bundle-SymbolicName>org.apache.felix.wireadmin</Bundle-SymbolicName> |
| 43 | <Private-Package>org.apache.felix.wireadmin.*</Private-Package> |
| 44 | </instructions> |
Humberto Cervantes Maceda | bd7de44 | 2006-04-04 16:05:02 +0000 | [diff] [blame] | 45 | </configuration> |
| 46 | </plugin> |
| 47 | </plugins> |
| 48 | </build> |
| 49 | </project> |