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 15 <artifactId>log4j-over-slf4j</artifactId> 16 <packaging>jar</packaging> 17 <name>Log4j Implemented Over SLF4J</name> 18 <description>Log4j implemented over SLF4J</description> 19 20 <url>http://www.slf4j.org</url> 21 22 <licenses> 23 <license> 24 <name>Apache Software Licenses</name> 25 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> 26 </license> 27 </licenses> 28 29 30 31 <dependencies> 32 <dependency> 33 <groupId>org.slf4j</groupId> 34 <artifactId>slf4j-api</artifactId> 35 </dependency> 36 <dependency> 37 <groupId>org.slf4j</groupId> 38 <artifactId>slf4j-jdk14</artifactId> 39 <scope>test</scope> 40 </dependency> 41 </dependencies> 42 43 <build> 44 <plugins> 45 46 <plugin> 47 <groupId>org.apache.felix</groupId> 48 <artifactId>maven-bundle-plugin</artifactId> 49 <configuration> 50 <instructions> 51 <_exportcontents>org.apache.log4j*;version=${reload4j.version};-noimport:=true</_exportcontents> 52 </instructions> 53 </configuration> 54 </plugin> 55 56 </plugins> 57 </build> 58 59</project> 60