• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3
4  <parent>
5    <groupId>org.slf4j</groupId>
6    <artifactId>slf4j-parent</artifactId>
7    <version>1.7.13-SNAPSHOT</version>
8  </parent>
9
10  <modelVersion>4.0.0</modelVersion>
11
12  <artifactId>jcl-over-slf4j</artifactId>
13  <packaging>jar</packaging>
14  <name>JCL 1.1.1 implemented over SLF4J</name>
15  <description>JCL 1.1.1 implemented over SLF4J</description>
16  <url>http://www.slf4j.org</url>
17
18
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>
39
40  </dependencies>
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
62
63  </build>
64
65</project>