1<?xml version="1.0" encoding="UTF-8"?> 2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 3 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> 4 5 <modelVersion>4.0.0</modelVersion> 6 7 <parent> 8 <groupId>org.slf4j</groupId> 9 <artifactId>slf4j-parent</artifactId> 10 <version>2.0.12</version> 11 <relativePath>../parent/pom.xml</relativePath> 12 </parent> 13 14 <artifactId>osgi-over-slf4j</artifactId> 15 16 <packaging>jar</packaging> 17 <name>OSGi LogService implemented over SLF4J</name> 18 19 <url>http://www.slf4j.org</url> 20 <description> 21 OSGi LogService implementation over SLF4J 22 </description> 23 24 <dependencies> 25 <dependency> 26 <groupId>org.osgi</groupId> 27 <artifactId>org.osgi.core</artifactId> 28 <version>4.2.0</version> 29 <scope>provided</scope> 30 </dependency> 31 <dependency> 32 <groupId>org.osgi</groupId> 33 <artifactId>org.osgi.enterprise</artifactId> 34 <version>4.2.0</version> 35 <scope>provided</scope> 36 </dependency> 37 38 <dependency> 39 <groupId>org.slf4j</groupId> 40 <artifactId>slf4j-simple</artifactId> 41 <scope>provided</scope> 42 </dependency> 43 </dependencies> 44 45 <build> 46 <plugins> 47 48 <plugin> 49 <groupId>org.apache.felix</groupId> 50 <artifactId>maven-bundle-plugin</artifactId> 51 <configuration> 52 <instructions> 53 <Bundle-SymbolicName>org.slf4j.osgi-over-slf4j</Bundle-SymbolicName> 54 <Bundle-Activator>org.slf4j.osgi.logservice.impl.Activator</Bundle-Activator> 55 <Bundle-Category>osgi</Bundle-Category> 56 <_exportcontents combine.self="override" /> 57 </instructions> 58 </configuration> 59 </plugin> 60 61 </plugins> 62 </build> 63 64</project> 65