blob: ee4d13bf76b2a142b32f0d8dfd797389aadf5720 [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>
Richard S. Hall4d5cf062006-12-06 16:12:42 +00005 <version>0.9.0-incubator-SNAPSHOT</version>
Karl Pauls589e2b32007-07-11 18:29:29 +00006 <relativePath>../pom/pom.xml</relativePath>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +00007 </parent>
8 <modelVersion>4.0.0</modelVersion>
Richard S. Hall1da4e542006-11-02 21:45:44 +00009 <packaging>bundle</packaging>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000010 <name>Apache Felix Log Service</name>
Richard S. Hall1da4e542006-11-02 21:45:44 +000011 <description>
12 This bundle provides an implementation of the OSGi R4 Log service.
13 </description>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000014 <artifactId>org.apache.felix.log</artifactId>
15 <dependencies>
16 <dependency>
17 <groupId>${pom.groupId}</groupId>
18 <artifactId>org.osgi.core</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000019 </dependency>
20 <dependency>
21 <groupId>${pom.groupId}</groupId>
22 <artifactId>org.osgi.compendium</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000023 </dependency>
24 </dependencies>
25 <build>
26 <plugins>
27 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000028 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000029 <artifactId>maven-bundle-plugin</artifactId>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000030 <extensions>true</extensions>
31 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000032 <instructions>
33 <Export-Package>org.osgi.service.log</Export-Package>
34 <Private-Package>org.apache.felix.log.impl</Private-Package>
35 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
36 <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
37 <Export-Service>org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService</Export-Service>
38 </instructions>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000039 </configuration>
40 </plugin>
41 </plugins>
42 </build>
43</project>