<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> | |
<parent> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-parent</artifactId> | |
<version>1.5.0-M0</version> | |
</parent> | |
<modelVersion>4.0.0</modelVersion> | |
<groupId>org.slf4j</groupId> | |
<artifactId>osgi-over-slf4j</artifactId> | |
<packaging>bundle</packaging> | |
<name>OSGi LogService Implemented Over SLF4J</name> | |
<url>http://www.slf4j.org</url> | |
<description> | |
OSGi LogService implementation over SLF4J | |
</description> | |
<dependencies> | |
<dependency> | |
<groupId>org.osgi</groupId> | |
<artifactId>org.osgi.core</artifactId> | |
<version>4.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.osgi</groupId> | |
<artifactId>org.osgi.compendium</artifactId> | |
<version>4.0</version> | |
<scope>provided</scope> | |
</dependency> | |
<dependency> | |
<groupId>org.slf4j</groupId> | |
<artifactId>slf4j-simple</artifactId> | |
<version>${project.version}</version> | |
<scope>provided</scope> | |
</dependency> | |
</dependencies> | |
<build> | |
<plugins> | |
<plugin> | |
<groupId>org.apache.felix</groupId> | |
<artifactId>maven-bundle-plugin</artifactId> | |
<version>0.9.0-incubator-SNAPSHOT</version> | |
<extensions>true</extensions> | |
<configuration> | |
<instructions> | |
<Export-Package>org.osgi.service.log</Export-Package> | |
<Import-Package>org.slf4j;version=${project.version},*</Import-Package> | |
<Private-Package>org.slf4j.osgi.logservice.impl</Private-Package> | |
<Bundle-Activator>org.slf4j.osgi.logservice.impl.Activator</Bundle-Activator> | |
</instructions> | |
</configuration> | |
</plugin> | |
</plugins> | |
</build> | |
</project> |