blob: f858a6862d36b0d524c786447a834b5931a70f7a [file] [log] [blame]
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +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 Log Service</name>
10 <artifactId>org.apache.felix.log</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>LogService</bundleName>
Richard S. Hall8cbab552006-10-27 15:06:32 +000035 <bundleSymbolicName>${pom.artifacfId}</bundleSymbolicName>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000036 <bundleVendor>Apache Software Foundation</bundleVendor>
37 <bundleDescription>
38 This bundle provides an implementation of the OSGi R4 Log service.
39 </bundleDescription>
40 <bundleActivator>
41 org.apache.felix.log.impl.Activator
42 </bundleActivator>
43 <importPackage>
44 org.osgi.framework, org.osgi.service.log; version=1.3
45 </importPackage>
46 <exportService>
47 org.osgi.service.log.LogService, org.osgi.service.log.LogReaderService
48 </exportService>
49 </osgiManifest>
50 </configuration>
51 </plugin>
52 </plugins>
53 </build>
54</project>