blob: c6ff398f5f30596053e3c5a4ddffe4f1235bd3d0 [file] [log] [blame]
Ceki Gulcue0985452012-05-08 19:01:06 +02001<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
Jeremy Landis16b8c132014-09-27 16:48:43 -04002 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 +01003
Ceki Gulcue0985452012-05-08 19:01:06 +02004 <parent>
5 <groupId>org.slf4j</groupId>
6 <artifactId>slf4j-parent</artifactId>
Ceki Gulcu7122d7e2015-03-26 22:01:21 +01007 <version>1.7.13-SNAPSHOT</version>
Ceki Gulcue0985452012-05-08 19:01:06 +02008 </parent>
Ceki Gulcu88c4c452009-12-03 19:16:42 +01009
Ceki Gulcue0985452012-05-08 19:01:06 +020010 <modelVersion>4.0.0</modelVersion>
11
Ceki Gulcue0985452012-05-08 19:01:06 +020012 <artifactId>jcl-over-slf4j</artifactId>
13 <packaging>jar</packaging>
14 <name>JCL 1.1.1 implemented over SLF4J</name>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020015 <description>JCL 1.1.1 implemented over SLF4J</description>
Ceki Gulcue0985452012-05-08 19:01:06 +020016 <url>http://www.slf4j.org</url>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020017
Ceki Gulcu88c4c452009-12-03 19:16:42 +010018
19 <dependencies>
20 <!--
21 <dependency>
22 <groupId>org.slf4j</groupId>
23 <artifactId>slf4j-nop</artifactId>
24 <version>${project.version}</version>
25 <scope>provided</scope>
26 </dependency>
27 -->
28
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>
Ceki Gulcue0985452012-05-08 19:01:06 +020039
Ceki Gulcu88c4c452009-12-03 19:16:42 +010040 </dependencies>
41
42 <build>
Ceki Gulcue0985452012-05-08 19:01:06 +020043 <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>
Ceki Gulcue0985452012-05-08 19:01:06 +020057 </configuration>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010058 </plugin>
Ceki Gulcue03c29e2015-03-26 18:10:33 +010059
Ceki Gulcu88c4c452009-12-03 19:16:42 +010060 </plugins>
Ceki Gulcue03c29e2015-03-26 18:10:33 +010061
62
Ceki Gulcu88c4c452009-12-03 19:16:42 +010063 </build>
64
Ceki Gulcuffec42f2006-08-15 17:42:56 +000065</project>