blob: 6d1f6ba7246357c2db353ee71049eb38bf312a8d [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 <artifactId>slf4j-api</artifactId>
Ceki Gulcu67c07b72014-12-13 19:12:03 +010014
Ceki Gulcu88c4c452009-12-03 19:16:42 +010015 <packaging>jar</packaging>
16 <name>SLF4J API Module</name>
Ceki Gulcud8b43cb2012-05-08 18:47:02 +020017 <description>The slf4j API</description>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010018
19 <url>http://www.slf4j.org</url>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010020
21 <dependencies>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010022 </dependencies>
23
24 <build>
25 <plugins>
26 <plugin>
27 <groupId>org.apache.maven.plugins</groupId>
28 <artifactId>maven-surefire-plugin</artifactId>
29 <configuration>
30 <forkMode>once</forkMode>
31 <reportFormat>plain</reportFormat>
32 <trimStackTrace>false</trimStackTrace>
33 <excludes>
34 <exclude>**/AllTest.java</exclude>
35 <exclude>**/PackageTest.java</exclude>
36 </excludes>
37 </configuration>
38 </plugin>
39
40 <plugin>
41 <groupId>org.apache.maven.plugins</groupId>
42 <artifactId>maven-jar-plugin</artifactId>
43 <configuration>
44 <archive>
45 <manifestEntries>
46 <Bundle-Version>${parsedVersion.osgiVersion}</Bundle-Version>
47 <Bundle-Description>${project.description}</Bundle-Description>
48 <Implementation-Version>${project.version}</Implementation-Version>
49 </manifestEntries>
50 <manifestFile>${project.build.outputDirectory}/META-INF/MANIFEST.MF</manifestFile>
51 </archive>
52 </configuration>
53 <executions>
54 <execution>
55 <id>bundle-test-jar</id>
56 <phase>package</phase>
57 <goals>
58 <goal>jar</goal>
59 <goal>test-jar</goal>
60 </goals>
61 </execution>
62 </executions>
63 </plugin>
64
65 <plugin>
66 <groupId>org.apache.maven.plugins</groupId>
67 <artifactId>maven-antrun-plugin</artifactId>
68 <executions>
69 <execution>
70 <phase>process-classes</phase>
71 <goals>
72 <goal>run</goal>
73 </goals>
74 </execution>
75 </executions>
76 <configuration>
77 <tasks>
78 <echo>Removing slf4j-api's dummy StaticLoggerBinder and StaticMarkerBinder</echo>
79 <delete dir="target/classes/org/slf4j/impl"/>
80 </tasks>
81 </configuration>
82 </plugin>
83
84 </plugins>
85
86 </build>
Ceki Gulcu88c4c452009-12-03 19:16:42 +010087
Ceki Gulcuddce3632006-08-14 20:34:26 +000088</project>