blob: 4080b915fc164b106669a2e270945e45ed832277 [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>
5 <version>0.8.0-SNAPSHOT</version>
6 </parent>
7 <modelVersion>4.0.0</modelVersion>
8 <packaging>osgi-bundle</packaging>
9 <name>Apache Felix WireAdmin</name>
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>
28 <groupId>org.apache.felix.plugins</groupId>
29 <artifactId>maven-osgi-plugin</artifactId>
30 <version>${pom.version}</version>
31 <extensions>true</extensions>
32 <configuration>
33 <osgiManifest>
34 <bundleName>WireAdmin</bundleName>
35 <bundleVendor>Apache Software Foundation</bundleVendor>
36 <bundleDescription>
37 Implementation of the WireAdmin Service.
38 </bundleDescription>
39 <bundleActivator>
40 org.apache.felix.wireadmin.Activator
41 </bundleActivator>
42 <bundleSymbolicName>org.apache.felix.wireadmin</bundleSymbolicName>
43 <importPackage>
44 org.osgi.service.wireadmin; specification-version=1.0.0
45 </importPackage>
46 </osgiManifest>
47 </configuration>
48 </plugin>
49 </plugins>
50 </build>
51</project>