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 <parent> 6 <groupId>org.slf4j</groupId> 7 <artifactId>slf4j-parent</artifactId> 8 <version>2.0.12</version> 9 <relativePath>../parent/pom.xml</relativePath> 10 </parent> 11 12 <modelVersion>4.0.0</modelVersion> 13 14 <artifactId>jcl-over-slf4j</artifactId> 15 <packaging>jar</packaging> 16 <name>JCL 1.2 implemented over SLF4J</name> 17 <description>JCL 1.2 implemented over SLF4J</description> 18 <url>http://www.slf4j.org</url> 19 20 <licenses> 21 <license> 22 <name>Apache License, Version 2.0</name> 23 <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> 24 <distribution>repo</distribution> 25 </license> 26 </licenses> 27 28 <properties> 29 <module-name>org.apache.commons.logging</module-name> 30 </properties> 31 32 <dependencies> 33 <dependency> 34 <groupId>org.slf4j</groupId> 35 <artifactId>slf4j-api</artifactId> 36 </dependency> 37 <dependency> 38 <groupId>org.slf4j</groupId> 39 <artifactId>slf4j-jdk14</artifactId> 40 <scope>test</scope> 41 </dependency> 42 </dependencies> 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.commons.logging*;version=${jcl.version};-noimport:=true</_exportcontents> 52 </instructions> 53 </configuration> 54 </plugin> 55 56 </plugins> 57 </build> 58</project> 59