blob: 6f6c0266d3568b33443121f816f20dab41ef25e6 [file] [log] [blame]
Ceki Gulcu88c4c452009-12-03 19:16:42 +01001<project xmlns="http://maven.apache.org/POM/4.0.0"
2 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Jeremy Landis16b8c132014-09-27 16:48:43 -04003 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 +01004
Ceki Gulcu67c07b72014-12-13 19:12:03 +01005 <modelVersion>4.0.0</modelVersion>
6
Ceki Gulcu88c4c452009-12-03 19:16:42 +01007 <parent>
8 <groupId>org.slf4j</groupId>
9 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu7122d7e2015-03-26 22:01:21 +010010 <version>1.7.13-SNAPSHOT</version>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010011 </parent>
12
Ceki Gulcu88c4c452009-12-03 19:16:42 +010013
Ceki Gulcu88c4c452009-12-03 19:16:42 +010014 <artifactId>log4j-over-slf4j</artifactId>
15 <packaging>jar</packaging>
16 <name>Log4j Implemented Over SLF4J</name>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020017 <description>Log4j implemented over SLF4J</description>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010018
19 <url>http://www.slf4j.org</url>
20
Ceki Gulcu88c4c452009-12-03 19:16:42 +010021 <licenses>
22 <license>
23 <name>Apache Software Licenses</name>
24 <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
25 </license>
26 </licenses>
27
28 <dependencies>
29 <dependency>
30 <groupId>org.slf4j</groupId>
31 <artifactId>slf4j-api</artifactId>
32 </dependency>
33
34 <dependency>
35 <groupId>org.slf4j</groupId>
36 <artifactId>slf4j-jdk14</artifactId>
37 <scope>test</scope>
38 </dependency>
39 </dependencies>
40
41
42 <build>
43 <plugins>
Ceki Gulcue03c29e2015-03-26 18:10:33 +010044
Ceki Gulcu88c4c452009-12-03 19:16:42 +010045 <plugin>
46 <groupId>org.apache.maven.plugins</groupId>
47 <artifactId>maven-jar-plugin</artifactId>
48 <configuration>
49 <archive>
50 <manifestEntries>
51 <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
52 <Bundle-Description>${project.description}</Bundle-Description>
53 <Implementation-Version>${project.version}</Implementation-Version>
54 </manifestEntries>
55 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
56 </archive>
57 </configuration>
58 </plugin>
Ceki Gulcue03c29e2015-03-26 18:10:33 +010059
Ceki Gulcu88c4c452009-12-03 19:16:42 +010060 </plugins>
61 </build>
62
Ceki Gulcu14797602007-07-09 20:24:02 +000063</project>