blob: ac6cc23c25a75add6498acafb93958efd00323bb [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>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Richard S. Hall0ad669d2007-06-18 19:05:48 +00009 <packaging>bundle</packaging>
10 <name>Apache Felix Wire Admin</name>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000011 <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. Hall0ad669d2007-06-18 19:05:48 +000029 <groupId>org.apache.felix</groupId>
30 <artifactId>maven-bundle-plugin</artifactId>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000031 <extensions>true</extensions>
32 <configuration>
Richard S. Hall0ad669d2007-06-18 19:05:48 +000033 <instructions>
34 <Bundle-Name>WireAdmin</Bundle-Name>
35 <Bundle-Vendor>Apache Felix</Bundle-Vendor>
36 <Bundle-Description>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000037 Implementation of the WireAdmin Service.
Richard S. Hall0ad669d2007-06-18 19:05:48 +000038 </Bundle-Description>
39 <Bundle-Activator>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000040 org.apache.felix.wireadmin.Activator
Richard S. Hall0ad669d2007-06-18 19:05:48 +000041 </Bundle-Activator>
42 <Bundle-SymbolicName>org.apache.felix.wireadmin</Bundle-SymbolicName>
43 <Private-Package>org.apache.felix.wireadmin.*</Private-Package>
44 </instructions>
Humberto Cervantes Macedabd7de442006-04-04 16:05:02 +000045 </configuration>
46 </plugin>
47 </plugins>
48 </build>
49</project>