blob: 0cd2f7361559d967cc030d2ed29071af362c8e31 [file] [log] [blame]
Ceki Gulcud8b43cb2012-05-08 18:47:02 +02001<project
2 xmlns="http://maven.apache.org/POM/4.0.0"
3 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Jeremy Landis16b8c132014-09-27 16:48:43 -04004 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Ceki Gulcu88c4c452009-12-03 19:16:42 +01005
Ceki Gulcu67c07b72014-12-13 19:12:03 +01006 <modelVersion>4.0.0</modelVersion>
7
Ceki Gulcud8b43cb2012-05-08 18:47:02 +02008 <parent>
9 <groupId>org.slf4j</groupId>
10 <artifactId>slf4j-parent</artifactId>
Ceki Gulcud8dc5b12015-03-26 14:57:19 +010011 <version>1.7.11</version>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020012 </parent>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010013
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020014 <artifactId>slf4j-log4j12</artifactId>
Ceki Gulcu67c07b72014-12-13 19:12:03 +010015
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020016 <packaging>jar</packaging>
17 <name>SLF4J LOG4J-12 Binding</name>
18 <description>SLF4J LOG4J-12 Binding</description>
19 <url>http://www.slf4j.org</url>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010020
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020021
Ceki Gulcu88c4c452009-12-03 19:16:42 +010022 <dependencies>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020023 <dependency>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010024 <groupId>org.slf4j</groupId>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020025 <artifactId>slf4j-api</artifactId>
26 </dependency>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010027
28 <dependency>
29 <groupId>log4j</groupId>
30 <artifactId>log4j</artifactId>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020031 </dependency>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010032 </dependencies>
33
34 <build>
35 <plugins>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020036 <plugin>
37 <groupId>org.apache.maven.plugins</groupId>
38 <artifactId>maven-jar-plugin</artifactId>
39 <configuration>
40 <archive>
41 <manifestEntries>
42 <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
43 <Bundle-Description>${project.description}</Bundle-Description>
44 <Implementation-Version>${project.version}</Implementation-Version>
45 </manifestEntries>
46 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
47 </archive>
48 </configuration>
49 </plugin>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010050 </plugins>
51 </build>
52
Ceki Gulcu807286d2006-08-15 20:15:36 +000053</project>