blob: 5700d7b7b2c9b1acc4bf668e9189e797f6321689 [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>
Karl Pauls0a3858c2007-07-13 22:03:31 +00005 <version>1.1.0-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>
Karl Pauls0a3858c2007-07-13 22:03:31 +000014 <version>0.9.0-SNAPSHOT</version>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000015 <artifactId>org.apache.felix.log</artifactId>
16 <dependencies>
17 <dependency>
18 <groupId>${pom.groupId}</groupId>
19 <artifactId>org.osgi.core</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000020 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000021 </dependency>
22 <dependency>
23 <groupId>${pom.groupId}</groupId>
24 <artifactId>org.osgi.compendium</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000025 <version>0.9.0-SNAPSHOT</version>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000026 </dependency>
27 </dependencies>
28 <build>
29 <plugins>
30 <plugin>
Richard S. Hall1da4e542006-11-02 21:45:44 +000031 <groupId>org.apache.felix</groupId>
Richard S. Hall797bc982007-05-21 18:35:07 +000032 <artifactId>maven-bundle-plugin</artifactId>
Karl Pauls0a3858c2007-07-13 22:03:31 +000033 <version>1.1.0-SNAPSHOT</version>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000034 <extensions>true</extensions>
35 <configuration>
Richard S. Hall1da4e542006-11-02 21:45:44 +000036 <instructions>
37 <Export-Package>org.osgi.service.log</Export-Package>
38 <Private-Package>org.apache.felix.log.impl</Private-Package>
39 <Bundle-SymbolicName>${pom.artifactId}</Bundle-SymbolicName>
40 <Bundle-Activator>${pom.artifactId}.impl.Activator</Bundle-Activator>
41 <Export-Service>org.osgi.service.log.LogService,org.osgi.service.log.LogReaderService</Export-Service>
42 </instructions>
Richard S. Hall0b8e3ba2006-10-25 13:26:32 +000043 </configuration>
44 </plugin>
45 </plugins>
46 </build>
47</project>