• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<project xmlns="http://maven.apache.org/POM/4.0.0"
2  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>1.7.13-SNAPSHOT</version>
11  </parent>
12
13
14	<artifactId>log4j-over-slf4j</artifactId>
15	<packaging>jar</packaging>
16	<name>Log4j Implemented Over SLF4J</name>
17  <description>Log4j implemented over SLF4J</description>
18
19	<url>http://www.slf4j.org</url>
20
21  <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>
44
45      <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>
59
60    </plugins>
61  </build>
62
63</project>