blob: 259f9ddb7dcc484993432f8cc60b5c907a81fe93 [file] [log] [blame]
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +00001<project>
2 <parent>
3 <groupId>org.apache.felix</groupId>
4 <artifactId>felix</artifactId>
Richard S. Hallf2be1962006-12-22 19:46:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +00006 </parent>
7 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00008 <packaging>bundle</packaging>
9 <name>Apache Felix Wire Admin</name>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000010 <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. Hall0ad669d2007-06-18 19:05:48 +000028 <groupId>org.apache.felix</groupId>
29 <artifactId>maven-bundle-plugin</artifactId>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000030 <extensions>true</extensions>
31 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000032 <instructions>
33 <Bundle-Name>WireAdmin</Bundle-Name>
34 <Bundle-Vendor>Apache Felix</Bundle-Vendor>
35 <Bundle-Description>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000036 Implementation of the WireAdmin Service.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000037 </Bundle-Description>
38 <Bundle-Activator>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000039 org.apache.felix.wireadmin.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000040 </Bundle-Activator>
41 <Bundle-SymbolicName>org.apache.felix.wireadmin</Bundle-SymbolicName>
42 <Private-Package>org.apache.felix.wireadmin.*</Private-Package>
43 </instructions>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000044 </configuration>
45 </plugin>
46 </plugins>
47 </build>
48</project>