blob: 510a567487166681c4088517f4733bc84ec4137b [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>
Richard S. Hall1da4e542006-11-02 21:45:44 +00008 <packaging>bundle</packaging>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +00009 <name>Apache Felix Log Service</name>
Richard S. Hall1da4e542006-11-02 21:45:44 +000010 <description>
11 This bundle provides an implementation of the OSGi R4 Log service.
12 </description>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000013 <artifactId>org.apache.felix.log</artifactId>
14 <dependencies>
15 <dependency>
16 <groupId>${pom.groupId}</groupId>
17 <artifactId>org.osgi.core</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000018 </dependency>
19 <dependency>
20 <groupId>${pom.groupId}</groupId>
21 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000022 </dependency>
23 </dependencies>
24 <build>
25 <plugins>
26 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000027 <groupId>org.apache.felix</groupId>
28 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000029 <extensions>true</extensions>
30 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000031 <instructions>
32 <Export-Package>org.osgi.service.log</Export-Package>
33 <Private-Package>org.apache.felix.log.impl</Private-Package>
34 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
35 <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
36 <Export-Service>org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService</Export-Service>
37 </instructions>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000038 </configuration>
39 </plugin>
40 </plugins>
41 </build>
42</project>