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